I am able to display my contents in the bootstrap-treeview, able to modify few things i.e., restricting selection up to only one node.by using below dirty solution,
if(editId!='') {
$($checkableTree).treeview('uncheckAll', { silent: true });
$($checkableTree).treeview('checkNode', [ node.nodeId, { silent: true } ]);
}
Problem I want to pre-checked a node at the time of edit, issue is I don't have the nodeId, I have only href record information.
please view below screen shot.
I have taken below documentation for reference but no luck, https://www.jqueryscript.net/other/Dynamic-Tree-View-Plugin-jQuery-Bootstrap.html
if someone know that how to do this please help.