if i set
$opt[“rowNum”] = 0;
the grid shows “all” selected but filter 10 rows per page.
How i can select “All” and show all rows by default?
1 Answers
There is no perfect way to show all rows beside setting a big number. In lib, we have set it to 99999. You can try setting:
$opt["rowNum"] = 99999;
Your Answer