print and search(not filter) problem when using the method o

when using the method of enableSmartRendering(true), how do can search(not filter) text in all page? (not only loaded page).

when using the method of enableSmartRendering(true), how do can print all data? (not only loaded data).



thanks!

text in all page?
You can use
grid.findCell(mask);
It searches the data in all parsed and not-parsed rows

>>how do can print all data?
Fixed in oncoming release (will work without any extra code ) . In existing version you can try to use
for (var i=0; i<mygrid.getRowsNum(); i++) mygrid.render_row(i);
mygrid.printView();

If necessary we can provide a separate patch for printView functionality in SRND mode