14 lines
342 B
JavaScript
14 lines
342 B
JavaScript
Ext.define('Common.store.SettingsList', {
|
|
extend: 'Ext.data.Store',
|
|
config: {
|
|
model: 'Common.model.SettingItem',
|
|
grouper: {
|
|
groupFn : function(record) {
|
|
return record.get('group');
|
|
},
|
|
sorterFn : function(){
|
|
return 0;
|
|
}
|
|
}
|
|
}
|
|
}); |