JavaScript array containing data for the component
var data = [
{ id:"1", open:true, value:"The Shawshank Redemption", data:[
{ id:"1.1", value:"Part 1" },
{ id:"1.2", value:"Part 2" },
{ id:"1.3", value:"Part 3" }
]},
{ id:"2", value:"The Godfather", open:true, data:[
{ id:"2.1", value:"Part 1", disabled:true },
{ id:"2.2", value:"Part 2" }
]}
];
webix.ui({
view:"tree", data:data
});
The data property serves only as an initial data source. After the data has been parsed, it will be kept in the inner storage for loaded data.
The source array will be modified during data parsing. To reuse the original data array, make a copy of it and continue with the copied array.
Each data item of Tree can have the following properties:
All these properties can be set and changed.
Each data item will be supplied with the following readonly properties to form the hierarchy: