Categories | Question details Back To List | ||
print and search(not filter) problem when using the method of enableSmartRendering(true). 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! Answer posted by Support on Mar 09, 2009 04:05 >>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 |