您可以将示例:更改app/simple/app/Viewport.js
为:
您将在 Chrome 控制台中收到此错误:
未捕获的类型错误:无法读取未定义的 ext-all.js:18 Ext.cmd.derive.getDockedItems 的属性“项目”
但是,如果您对此发表评论:
initComponent : function() {
this.callParent();
},
一切都好。
Ext.define('AM.view.Viewport', {
extend : 'Ext.container.Viewport',
layout: 'border',
items : [{
border : false,
region : 'north',
xtype : 'progressbar',
text : 'Ready',
height : 20
}, {
region : 'west',
xtype : 'userlist',
width:300
}, {
region : 'center',
xtype : 'treepanel',
initComponent : function() {
this.callParent();
},
columns : [{
xtype : 'treecolumn',
sortable : false,
width : 200,
text : 'lala',
dataIndex : 'text'
}, {
flex : 1,
sortable : false,
text : 'haha',
dataIndex : 'pars'
}]
}]
});