Is it possible to somehow get ColVis to always display column checkboxes? I'd like to have a list of columns with checkboxes and eliminate the dropdown.
Not with ColVis itself, but ColVis is just a wrapper around fnSetColumnVis ( `column().visible()` in 1.10), so you could easily just add checkboxes to your document and call the methods using an event handler.
This example shows it with links:
1.9: http://datatables.net/release-datatables/examples/api/show_hide.html
1.10: http://next.datatables.net/examples/api/show_hide.html
Replies
This example shows it with links:
1.9: http://datatables.net/release-datatables/examples/api/show_hide.html
1.10: http://next.datatables.net/examples/api/show_hide.html
Allan