I have this data store
我有这个数据存储
mystore= Ext.create('Ext.data.Store', {
id: _id.boxesComboStore,
fields: ['label', 'value', 'id', 'type'],
autoLoad: true,
proxy: {
type: 'ajax',
url: 'url/to/controller',
reader: {
type: 'json',
root: 'MyModel'
}
}
})
mystore=