angular - ngx-tree view check box should be false by default -


i used code:

<ngx-treeview [config]="config" [items]="items" (selectedchange)="values = $event"> </ngx-treeview> 

everything works fine nodes check box checked default. want check box unchecked default.

this json object.

[   {     "value": "1022",     "text": "abc",     "children": [       {         "value": "1023",         "text": "bbc"        },       {         "value": "1024",         "text": "bcb",         "children": [           {             "value": "1025",             "text": "ccb"            }         ]       }     ]   } ] 

please not ask me alter json object.


Comments

Popular posts from this blog

resizing Telegram inline keyboard -

command line - How can a Python program background itself? -

php - "cURL error 28: Resolving timed out" on Wordpress on Azure App Service on Linux -