How do i increase the grid row count values?
default is 20,how do i change like this 50,100,150,200,All
Thank you,
2 Answers
Pasting from docs:
Grid Settings
You can use following options for `->set_options($grid)` function.
Number of records to show on page
$grid["rowNum"] = 10;
Options to show in paging records
$grid["rowList"] = array(10,20,30);
// you can also set 'All' for all records
$grid["rowList"] = array(10,20,30,'All');
// empty array will hide dropdown
$grid["rowList"] = array();
Your Answer