All Downloads are FREE. Search and download functionalities are using the official Maven repository.

admin.jstreeTest.html Maven / Gradle / Ivy

The newest version!





  

	
	
	jsTree
	
	
	
	
	
	
	
	
	
	
	
	


	
	

Basic AJAX demo

$('#jstree_demo').jstree({
  "core" : {
    "animation" : 0,
    "check_callback" : true,
    "themes" : { "stripes" : true },
    'data' : {
      'url' : function (node) {
        return node.id === '#' ?
          'ajax_demo_roots.json' : 'ajax_demo_children.json';
      },
      'data' : function (node) {
        return { 'id' : node.id };
      }
    }
  },
  "types" : {
    "#" : {
      "max_children" : 1, 
      "max_depth" : 4, 
      "valid_children" : ["root"]
    },
    "root" : {
      "icon" : "/static/3.0.0/assets/images/tree_icon.png",
      "valid_children" : ["default"]
    },
    "default" : {
      "valid_children" : ["default","file"]
    },
    "file" : {
      "icon" : "glyphicon glyphicon-file",
      "valid_children" : []
    }
  },
  "plugins" : [
    "contextmenu", "dnd", "search",
    "state", "types", "wholerow"
  ]
});
You can see the code of the following demos in the demo folder of the download

Filebrowser demo

Database demo

click here for the old site (v.1)





© 2015 - 2024 Weber Informatics LLC | Privacy Policy