Extjs4 中怎么获取根节点并展开第一层
1个回答
展开全部
展开节点的代码放到你的store的load事件中,ajax是异步加载的,执行展开代码先于ajax返回数据
var store = Ext.create('Ext.data.TreeStore', {
//autoLoad : true,
proxy: {
type: 'ajax',
url: 'extjs/compassApi_loadTableListTree.action',
reader: {
type: 'json',
root: 'children'
}
},
sorters: [{
property: 'leaf',
direction: 'ASC'
}],
root: {
expanded: true
},
listeners:{load: function () {
var rootnode = tree.getRootNode();
console.log(tree.getRootNode());
if (rootnode.childNodes.length > 0) {
console.log(1);
rootnode.childNodes[0].expand();
}
}}
});
var store = Ext.create('Ext.data.TreeStore', {
//autoLoad : true,
proxy: {
type: 'ajax',
url: 'extjs/compassApi_loadTableListTree.action',
reader: {
type: 'json',
root: 'children'
}
},
sorters: [{
property: 'leaf',
direction: 'ASC'
}],
root: {
expanded: true
},
listeners:{load: function () {
var rootnode = tree.getRootNode();
console.log(tree.getRootNode());
if (rootnode.childNodes.length > 0) {
console.log(1);
rootnode.childNodes[0].expand();
}
}}
});
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询