web-apps/apps/common/mobile/lib/store/SettingsList.js

14 lines
342 B
JavaScript
Raw Normal View History

2016-03-11 00:48:53 +00:00
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;
}
}
}
});