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

Popular posts from this blog

c# - Pausing a storyboard on TabItem mouse over -

erlang - Saving a digraph to mnesia is hindered because of its side-effects -

mongodb - Struggling to get ordered results from the last retrieved article, given array of elements to search in -