我有很多这样的网格。我想从另一个 js 文件加载基本网格和列。这在 Extjs4 中可能吗?
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
]
}
});