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.
Well I am able to resolve my issue,
Below was the solution,
selectNodeById($editId) to get the nodeId from href, in my case href is unique
editid_node is a hidden file were I assigned the nodeId
checkvals = parseInt(document.getElementById('editid_node').value); used to checked the required node.