I saw an FAQ on how to remove the operations toolbar from the bottom, but I would like it to ONLY be at the bottom and not be at the top.
How can I do that?
Jim
3 Answers
Hi, You can try set following. Where $g is grid object. Screenshot: https://i.imgur.com/rV48jC7.png
$opt["toolbar"] = "bottom";
$g->set_options($opt);
That worked! Thank you. I couldn’t find that option in the documentation. Is it listed?
Glad to know. Here: https://www.gridphp.com/docs/grid-options/#toolbar-position
Your Answer