JQuery Flexigrid hides column dropdown

By default, each column has a drop-down list that, when expanded, shows all columns with a checkmark. I do not want to show dropdowns in any of the columns. Please tell me how to do this? Should I go into a script to remove it?

+3
source share
1 answer

This is an option showToggleBtnin flexigrid:

    $('#mygrid').flexigrid({
        showToggleBtn: false
    });

The best documentation for flexigrid is simply to open a non-minified js file , the options are right at the top and have some decent comments.

+5
source

All Articles