Is it possible to hide the navigator on a toolbar. Some of my grids will never be over 10 rows or so.
3 Answers
These setting will remove the paging navigation and pages.
$grid["rowList"] = array();
$grid["pgbuttons"] = false;
$grid["pgtext"] = null;
$g->set_options($grid);
You can also refer faq: Q) How to remove buttons and text from toolbar?
Thanks, worked like a charm. Is there a list of what variables can be passed to set_options?
Your Answer