1
我有很多像這樣的網格。我想讓基礎網格和列從另一個js文件加載。在Extjs4中可能嗎?從不同的文件加載列extjs
Ext.define('App.view.MyGrid',
{
extend : 'Ext.grid.Panel',
alias : 'widget.resultsList',
id : 'myGrid',
header : false,
columnLines : true,
initComponent : function() {
this.store = 'MyStore';
this.columns = [
// Can this loaded from a another file
]
}
});