I have a tree load开发者_如何学Ced when i click but i needed this tree to be loaded when page loads(at start).
Supposing your tree ID is "13" (as mentionned in your code)
You should do :
Ext.onReady(function () {
Ext.getCmp("15").load();
});
I have a tree load开发者_如何学Ced when i click but i needed this tree to be loaded when page loads(at start).
Supposing your tree ID is "13" (as mentionned in your code)
You should do :
Ext.onReady(function () {
Ext.getCmp("15").load();
});
精彩评论