treejs
                                
                                
                                
                                    treejs copied to clipboard
                            
                            
                            
                        A lightweight tree widget, compatible with VanillaJS / React / Vue. Tiny size after gzip. Zero dependence.
Unfortunately, I need to run it on IE11, but IE11 does not know Object assign method.
Hi, Would be great to be able to have a property to define whether a node is open/closed by default similar to the `checked` property.
Hi, If your tree array is as such: ```javascript let data = [ { "id": "0", "text": "0", "checked": true, "children": [ { "id": "0-0", "text": "0-0", "checked": true, "children":...
Hi, The event handler for the nodes has the `nodeName` properties encoded as all capitals. HTML specification says lowercase; while this seems to work on plain HTML sites, this breaks...
Using `tree.js` and `tree.min.js` from the `dist/` in this repo results in: `Uncaught SyntaxError: unexpected token: ':'[tree.js:1:11](https:///js/tree.js)` Using standard script tag as documented for vanilla usage. Looking at the object...
Hi, I want to use treejs in my web-component but the initialisation of tree is done by providing a query selector input( container ). but this query over entire document....
Hi, is it possible to remove the checkboxes? just to have a normal tree view behaviour. Kr
Is it possible for the tree to use checkboxes to allow for the tree values to be submitted in a form?
All the examples except the Ajax one need the tree data structure to be defined prior to creating the tree object. We cant use the ajax option as the data...
closeDepth: 1 will help me to only show the first level of the tree with all collapsed. If I click on an item it will open, but it opens all...