1.如果你是从后台传得数据,那么需要在定义store的时候加上root属性,如下:
Ext.define('JCY.app.store.Right',{
extend:'Ext.data.TreeStore',
proxy:{
type:'ajax',
url:'/Extjs4/menuAction!getRightList.action',
reader:{
type:'json'
}
// autoLoad:true
},
root:{
text:'系统管理',
checked:false
}
});
再给treepanel加上rootVisible:true,就行了
2.直接不用显示根节点,直接在后台数据外面在套一个父节点就好了,根节点不让他显示