How do I disable or hide the show/hide filter in the feature chooser in iggrid. I am using remote filtering and also sorting. I have implemented the filter via a search box and I would like to keep the sorting feature in the feature selector, but i am not sure how to disable or hide certain features from the chooser box. I has also attached an image of what i would like to disable in the box.
Hello Vicky,
Thank you for posting in our community.
renderFC option can be used for achieving your requirement. This option determines whether the feature should be rendered in the feature chooser popup. For example:
// Initialize$(".selector").igGrid({ features: [ { name : "Filtering", renderFC: false } ]});
Please test this option on your side and let me know whether it helps you achieve your requirement.