I am using 1.5.2 version. I just need to make one change. I need to limit number or rows in result. My query will be like- select * from where model=x limit qty. this qty will come from master grid.
3 Answers
Currently it's not doable with lib.
You can try edit core lib jqgrid_dist.php and make changes as you need.
$limit = intval($_GET['rows']);
Even if I am able to show the desired number of rows on the first page. that will work for me. I tried $opt["rowNum"] = intval($_GET["qty"]); but this does not work.
Your Answer