sencha touch2中定义store格式

st2中定义store

dataStore = Ext.create('Ext.data.Store', {
            model: "OilRecord",
            syncRemovedRecords: true,
            sorters: [
                      {
                          property : 'id',
                          direction: 'DESC'
                      }
                  ]
             
        });


你可能感兴趣的:(sencha touch2中定义store格式)