Hi,
Is there a way to show or hide the autofilters, maybe from a link or button/icon?
Thanks, Stephen
2 Answers
You can call toggleToolbar() function, where list1 is grid id.
jQuery("#list1")[0].toggleToolbar();
You can also connect this function after adding a custom toolbar button click event.
Refer demos/appearance/toolbar-button.php
Your Answer