Hi, I have used the below to move all actions to bottom toolbar but the pagination stays on top toolbar, can I move that too?
// expand grid to screen width
$grid[“toolbar”] = “bottom”;
$grid[“autowidth”] = true;
//$grid[“pgbuttons”] = false;
1 Answers
If you are passing this $grid in set_options() function then it should work. You can test in on any demos that comes with package.
$grid[“toolbar”] = “bottom”;
…
$g->set_options($grid);
Your Answer