partkeepr

fork of partkeepr
git clone https://git.e1e0.net/partkeepr.git
Log | Files | Refs | Submodules | README | LICENSE

SystemPreferenceStore.js (384B)


      1 Ext.define('PartKeepr.data.store.SystemPreferenceStore', {
      2     extend: 'Ext.data.Store',
      3 
      4     /**
      5      * The store ID to use
      6      */
      7     storeId: 'SystemPreferenceStore',
      8 
      9     /**
     10      * Automatically load the store
     11      */
     12     autoLoad: true,
     13 
     14     /**
     15      * The model to use
     16      */
     17     model: "PartKeepr.SystemPreferenceBundle.Entity.SystemPreference",
     18 
     19     pageSize: 99999999
     20 });