开发者

Lazy Loading in dynatree

In this component http://wwwendt.de/tech/dynatree/index.html

under 5.4 Loading child nodes on demand ('lazy loading')

it seems that the only way to load the tree nodes in a lazy manner is to grab them from web service. What if I want to grab the nodes from a data structure?

such as:

onLazyRead: function(dtnode){

                dtnode.appendAjax({
                   //url: "sample-data2.json"开发者_如何学编程 
                   //grab the nodes here from array
                });
  }

Any advice? Another question: when onLazyRead is executed, does the whole tree get re-rendered again?


You could use

dtnode.addChild(dict);

instead of

.appendAjax(...)

In either case, only the changed nodes should get rendered.

dict must be formatted like the JSON response. You can als generate dict from a given tree or node using the toDict() method.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜