With columnFiltering, is it possible to hide label for a disabled column?
With columnFiltering, is it possible to hide label for a disabled column?
liety
Posts: 2Questions: 1Answers: 0
Hi,
I'm using the columnFiltering add-on for my project. I've disabled filtering for one column, and I'm hoping to take out the text that appears alongside the other filters in place of the input box.
[code]
$('#table').dataTable({
"bStateSave": true,
"columns": [
null,
null,
{"orderable": false},
null
]
});
$('#table').dataTable().columnFilter({aoColumns: [{type: "text"}, {type: "text"}, null, {type: "text"}]});
[/code]
Thanks!
This discussion has been closed.
Answers
Ugh. My bad. Think I wrote it into my footer manually somewhere in my page.