extjs-gpl
Version:
GPL licensed version of Sencha Ext JS
23 lines (18 loc) • 504 B
JavaScript
Ext.define('KitchenSink.store.Companies', {
extend: 'Ext.data.Store',
alias: 'store.companies',
model: 'KitchenSink.model.Company',
autoLoad: true,
pageSize: null,
proxy: {
type: 'ajax',
url: '/KitchenSink/Company',
reader: {
type: 'json',
rootProperty: 'data',
// Do not attempt to load orders inline.
// They are loaded through the proxy
implicitIncludes: false
}
}
});