В ставил в файл "MyApp.view.Search".
initComponent: function(){
var store = this.store;
console.log(store);
this.callParent(arguments);
this.on('specialkey', function(f, e){
if(e.getKey() == e.ENTER){
this.onTrigger2Click();
}
}, this);
},
Получаю
Вот сам Store
Ext.define('MyApp.store.Firms', {
extend: 'Ext.data.Store',
fields: [
{name: 'name'}
],
pageSize: 16,
storeId: 'Firms',
proxy: {
type: 'ajax',
actionMethods: {
create : 'POST',
read : 'POST',
update : 'POST',
destroy: 'POST'
},
url: 'firmslist',
reader: {
type: 'json',
root: 'results'
}
}
});