patternfly-bootstrap-treeview
patternfly-bootstrap-treeview copied to clipboard
Tree View for Twitter Bootstrap -
Hello, It would be nice to prevent event propagation to onNodeSelectedEvent when a html content is add to node with onNodeRendered event. Here is an example: ``` onNodeRendered: function (event,...
When calling removeNode with the silent: true modifier set, the method still triggers the treeview rendered event. Steps to reproduce: 1) make a call like `.treeview("removeNode", [nodesToRemove, { silent: true...
If it isn't possible already I am hoping that it would be possible to add a configuration option to the treeView. A simple boolean 'darkMode' could change to and from...
Is there a way to rename tree node (change **text** attribute) without reloading the whole tree or removing/adding the node? API methods don't seem to have anything like updateNode or...
Hello, If I try to remove a node with this `$('#tree').treeview('removeNode', [ '0.0.3.3' ]);` it fire this error : `bootstrap-treeview.min.js:1 Uncaught TypeError: Cannot read property 'remove' of undefined at g._removeNodeEl...
I have a treeview of top level nodes (see image 1), when clicking on a node, I do an AJAX request to obtain all child nodes of the clicked node...
I was trying to use the node returned from event hooks (e.g. `onNodeSelected(event, node)`) as parent and to add a child to that parent without success. Here is an emulating...
Hi! I have discovered, that the selectable option don't work. ``` jQuery('#tree').treeview({ "showBorder": false, "selectable": false, // Dont work!!! "showCheckbox": true, "checkable": true, "levels": 1, "uncheckedIcon": "fa fa-square-o", "checkedIcon": "fa...
``` $('#treeview').treeview({data:[{text:"pre Node"}]}); $('#treeview').treeview(true).addNode({text:"New Node"}); ``` The Node is added but has a error on select node https://stackoverflow.com/questions/54204024/jquery-bootstrap-treeview-error-on-addnode
Hi, I'm having an issue when I try to expand my entire tree using `expandAll` when I have lazy loaded branches. I'm working around this by explicitly expanding each node...