How to get the all the items of webix tree control onafterload. when I try to get items by var openItems= tree.getOpenItems(); returns blank value
In such case getOpenItems
will return only open branches (which haveopen:true
in their config).
The entire data you can get as
on:{
onAfterLoad:function(){
console.log(this.data.pull)
}
}