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?
Asked
Active
Viewed 2,229 times
1 Answers
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
-
worked ... thanks !! Also thanks for the help on documentation. I didn't know that. – Ashwin Apr 30 '12 at 11:53
-
No problem, make sure to mark the question as answered if you think it is. – Andrew Barrett Apr 30 '12 at 11:57
-
True, I always forget about that :) – Andrew Barrett Apr 30 '12 at 12:07