このようなグリッドがたくさんあります。別の 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
]
}
});