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
Post a Comment