| 1234567891011121314151617 |
- Ext.define('uas.store.Locale', {
- extend: 'Ext.data.Store',
- alias: 'store.locale',
- model: 'uas.model.Locale',
- autoLoad: true,
- proxy: {
- type: 'ajax',
- reader: {
- type: 'json',
- rootProperty: 'data'
- },
- url: '/resources/mock/locale.json'
- }
- });
|