tree = new Mif.Tree({ container: $('tree_container'),// tree container types: {// node types folder: { openIcon: 'mif-tree-open-icon',//css class open icon closeIcon: 'mif-tree-close-icon'// css class close icon } }, dfltType: 'folder',//default node type height: 18//node height }); var json = [ { "property": { "name": "root" }, "children": [ { "property": { "name": "node1" } }, { "property": { "name": "node2" }, "state": { "open": true }, "children":[ { "property": { "name": "node2.1" } }, { "property": { "name": "node2.2" } } ] }, { "property": { "name": "node4" } }, { "property": { "name": "node3" } } ] } ]; // load tree from json. tree.load({ json: json });
A note on comments here: These comments are moderated. No comments will show up until they are approved. Comments that are not productive (i.e. inflammatory, rude, etc) will not be approved.
Found a bug in this plugin? Please report it this repository's Github Issues.
blog comments powered by Disqus