This topic is locked
[SOLVED]

 Show and Hide Filter Selector

2/12/2019 9:11:40 AM
ASPRunner.NET General questions
D
DennisB author

I like the way the Search panel can be hidden or shown at run time. Can something similar be done with the Filter Panel? I like options like Interval Filtering for dates, but trying to make as much room available for grids as possible and it would be cool to be able to show/hide the filter panel on demand.

D
DennisB author 2/15/2019

Sergey emailed me the code to add to buttons. works well. thanks.

admin 2/16/2019

This code can be added to any Javascript event or button. Tested in version 10.
To hide all filters:

$("div[class=r-left]").hide();


To show all filters:

$("div[class=r-left]").show();