Is there an event that fires when the user clicks a button in the feature chooser? I want to know when the user clicks hide filter or show filter.
Hello Julie,
Thank you for contacting Infragistics!
I have done some looking into advanced filtering in the feature chooser I do not see a hide/show filter. What are you referring to? What is the behavior you want to achieve by handling a click on this?
Looking forward to hearing from you,
I attached a screenshot of the button I'm referring to, in case it was not clear in my initial post.
Thank you for the update. There isn’t a specific client event for the icon/button that hides/shows the filter row in the feature chooser. You can however add your own click event using the jQuery
https://api.jquery.com/click/
Note that each column will have its own feature chooser and a hide/show icon in each and each will have a unique id, for example for a column with the key name it is grid1_featurechooser_dd_li_Name_Filtering then for the ProductID column it is grid1_featurechooser_dd_li_ProductID_Filtering
I wasn't able to use the unique ids as suggested. I ended up using the ui-iggrid-icon-advanced-filter class on click event and was able to accomplish what I needed.
Thanks.