3

There is a dropdown by default on each column which when expanded shows all the columns with checkbox. I do not want to show the dropdowns in any of the columns. Please tell me how to do that? Do I have to go into the script to remove it?

Ashwin
  • 12,081
  • 22
  • 83
  • 117

1 Answers1

5

That is the showToggleBtn option in flexigrid:

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

The best documentation for flexigrid is just opening up the non-minified js file, the options are right at the top and have some decent comments.

Andrew Barrett
  • 19,721
  • 4
  • 47
  • 52