sencha touch 2 - get all store records even though filters applyed -
is possible can records though filters apply store. please provide guideline or reference code.
var sparestore = ext.getstore('abc'); sparestore.filter( 'item', value);
when alert sparestore count should rechords.
u can use snapshot property of store :
var allrecords = store.snapshot || store.data;
Comments
Post a Comment