partkeepr

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

SystemNoticeStore.js (596B)


      1 Ext.define('PartKeepr.data.store.SystemNoticeStore', {
      2     extend: 'Ext.data.Store',
      3 
      4     /**
      5      * The store ID to use
      6      */
      7     storeId: 'SystemNoticeStore',
      8 
      9     /**
     10      * Automatically load the store
     11      */
     12     autoLoad: true,
     13 
     14     /**
     15      * The model to use
     16      */
     17     model: "PartKeepr.CoreBundle.Entity.SystemNotice",
     18 
     19     pageSize: 99999999,
     20 
     21     sorters: [
     22         {
     23             property: 'date',
     24             direction: 'DESC'
     25         }
     26     ],
     27 
     28     filters: [
     29         {
     30             property: 'acknowledged',
     31             operator: "=",
     32             value: false
     33         }
     34     ]
     35 });