Is is possible to hide a colum with an html class tag
Is is possible to hide a colum with an html class tag
My research on TableSorter plugin shows that I could put the following tag to stop a column being sorted
[code]
My col
[/code]
just wondering if I could do the same for hiding :)
[code]
My col
[/code]
Or am I being silly here? :)
Thanks a bunch!
Nikkie
[code]
My col
[/code]
just wondering if I could do the same for hiding :)
[code]
My col
[/code]
Or am I being silly here? :)
Thanks a bunch!
Nikkie
This discussion has been closed.
Replies
[code]
/* Using aoColumnDefs */
$(document).ready(function() {
$('#example').dataTable( {
"aoColumnDefs": [
{ "bVisible": false, "aTargets": [ "hidden" ] }
] } );
} );
[/code]
Allan