Hi, when using the grid on mobile, almost all columns are hided automatically. Is there any mean to not autohide columns in any case. Also if I select all columns manually on the mobile, after a time it looses the selection (may be because the cookie is out of time)
Thank you!
1 Answers
You can set:
$grid[“cmTemplate”][“visible”] = “xs+”; // show all column on small screens
$grid[“shrinkToFit”] = false; // enable horizontal scrollbar
…
$g->set_options($grid);
Your Answer