Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
65
Hide a certain feature in the feature selector in iggrid
posted

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.

Parents
No Data
Reply
  • 17590
    Offline posted

    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.

Children
No Data