日期:2014-05-16 浏览次数:20424 次
Ext.onReady(function(){
var jsonData ={success:true,data: [{
text: 'Menu Option 1',
leaf: true
},{
text: 'Menu Option 2',
leaf: true
},{
text: 'Menu Option 3',
leaf: true
}]
}
new Ext.Viewport({
layout: 'border',
items: [{
region: 'center',
title: 'Navigation',
xtype: 'treepanel',
width: 200,
loader: new Ext.tree.TreeLoader(),
root: new Ext.tree.AsyncTreeNode({
expanded: true,
children: jsonData.data
}),
rootVisible: false,
listeners: {
click: function(n) {
Ext.Msg.alert('Navigation Tree Click', 'You clicked: "' + n.attributes.text + '"'+'\n'+'success:'+'\t'+jsonData.success);
}
}
}]
});
})