DataTree Loading, JavaScript Programming Example of DataTree Loading

JavaScript Programming Example of DataTree Loading

Get the programming example for quick and easy DataTree loading. The piece of code below allows the immediate loading of the entire tree (all its elements). Seize the opportunity to use our free coding samples.

JS Code

//plain json data, based on objects
webix.ui({
  	type:"clean", margin:20,
    rows:[
      {template:"<strong>Tree Loading</strong>", height:30},
      {
        view:"tree",
  		template:"{common.icon()} {common.folder()} #title#",
  		url: "//docs.webix.com/samples/40_serverside/01_php_vanila/server/datatree.php"
      }
    ]
});