Dynamic loading for treetable from server

I use for list : $$(“list”).load(requestServer) and I have no problem.

So, for treetable, I use the same method : $$(“treeTable”).load(requestServer) and I receive a webix message “Dynamic loading not implemented”.

the response of server is : [{‘id’: ‘1’, ‘mu_id’: ‘1’,‘name’ : ‘titi1’ , data : [{‘id’ : ‘1.1’, ‘name’ : ‘toto1’}]}]

We must use inevitably Dynamic loading method for treetable ?

Your code looks correct. I tried to reproduce the problem locally, but everything goes smoothly.

Could you please specify the moment the problem occurs? Does it happen during load call or other actions are performed at the same time?

Hello, it’s happen during load call, when I use “webix/codebase/webix.js” , I have no problem , no error message , data are in tree.
So when I use “webix/codebase/webix_debug.js”, I have the problem with a yellow webix message “Dynamic loading not implemented” and error in firebug.

I see. Could you share the code on your tree?
What Webix version do you use?

The code of tree is :

var gridTree = {
view:“treetable”,
id: “listsTreeTable”,
drag: “target”,
columns:[
{id : “id”, adjust: true},
{ id:“name”, editor:“text”, header:“listes”, fillspace:4,
template:"{common.treetable()} #name#"},
],
select: true,
editable: true,
editaction: “dblclick”,
};

$$(“treeTable”).load(requestServer);

The response of server is exactly the response of first post.

The version of webix is 2.4.4.

Well… Current version of Webix is 3.0.8. Several months have passed since that release.

Will the problem show up if you update to the newest version? You can download it from the site.