How to automatically activate search by column in grid with smartphone screen size? In other words, without using the filterSearch button.
2 Answers
To show autofilter on xs and onwards, you can set:
$opt[“search_options”][“autofilter”] = “xs+”;
// …
$g->set_options($opt);
Your Answer