I wrote a tag-input component which displays the selected nodes of the ember-cli-jstree component. Select or deselect nodes in the tree works find. The list of selected nodes is correct. Now I want to remove a specific tag from the tag-input component. If I remove an item from the selected node list, the related checkbox in the tree is always checked.
Is it possible to deselect the tree node?
This works:
this.get('jstreeActionReceiver').send('closeAll');
Thank you!
I wrote a tag-input component which displays the selected nodes of the ember-cli-jstree component. Select or deselect nodes in the tree works find. The list of selected nodes is correct. Now I want to remove a specific tag from the tag-input component. If I remove an item from the selected node list, the related checkbox in the tree is always checked.
Is it possible to deselect the tree node?
This works:
this.get('jstreeActionReceiver').send('closeAll');
Thank you!