grid search in one page

hello



i used paging in a grid, bug i got a needs to search one cell’s contents in just one page, how can i do this?



thanks!

You can

a) use findCell functionality and check results with custom code to filter ones which related to page in question
or
b) use manual looping as
var stat = mygrid.getStateOfView();
for (var i=stat[1]; i<stat[2]; i++)
if ( grid.cells2(i,index).getValue()==“some” ) do_something();