Advertisement
Guest User

Untitled

a guest
May 6th, 2016
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. <script>
  2. $.jstree.defaults.core.themes.responsive = true;
  3. $('#frmt').jstree({
  4. plugins: ["checkbox", "types"],
  5. "json_data":{
  6. "ajax" : {
  7. "url" : "D:pwebnodes.json" // the URL to fetch the data. Use relative url if required
  8. }
  9. },
  10. "types": {
  11. "file": {
  12. "icon": "jstree-file"
  13. }
  14. }
  15. });
  16. </script>
  17.  
  18. [
  19. {
  20. "id": "ajson1",
  21. "parent": "#",
  22. "text": "Simple root node"
  23. },
  24. {
  25. "id": "ajson2",
  26. "parent": "#",
  27. "text": "Root node 2"
  28. }, {
  29. "id": "ajson3",
  30. "parent": "ajson2",
  31. "text": "Child 1"
  32. }, {
  33. "id": "ajson4",
  34. "parent": "ajson2",
  35. "text": "Child 2"
  36. }
  37. ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement