fancytree.json 1.2 KB

12345678910111213141516171819202122232425262728293031
  1. [
  2. {"title": "Expanded folder with children", "expanded": true, "folder": true, "children": [
  3. {"key": "1_2", "title": "Expanded sub-item", "expanded": true, "children": [
  4. {"key": "1_2_1", "title": "Active sub-item (active and focus on init)", "active": true, "focused": true},
  5. {"key": "1_2_2", "title": "Basic <i>menu item</i> with <strong class='font-weight-semibold'>HTML support</strong>"}
  6. ]},
  7. {"key": "1_3", "title": "Expanded sub-item", "children": [
  8. {"key": "1_3_1", "title": "Sub-item 2.2.1"},
  9. {"key": "1_3_2", "title": "Sub-item 2.2.2"}
  10. ]}
  11. ]},
  12. {"key": "2", "title": "Menu item with key and tooltip", "extraClasses": "has-tooltip", "tooltip": "Look, a tool tip!"},
  13. {"key": "3", "title": "Collapsed folder", "folder": true, "children": [
  14. {"key": "3_1", "title": "Sub-item 1.1"},
  15. {"key": "3_1", "title": "Sub-item 1.2"}
  16. ]},
  17. {"key": "4", "title": "This is a selected item", "selected": true},
  18. {"key": "5", "title": "Document with some children (expanded on init)", "expanded": true, "children": [
  19. {"key": "5_1", "title": "Document sub-item"},
  20. {"key": "5_2", "title": "Another document sub-item", "children": [
  21. {"key": "5_2_1", "title": "Sub-item 2.1.1"},
  22. {"key": "5_2_2", "title": "Sub-item 2.1.2"}
  23. ]}
  24. ]}
  25. ]