With columnFiltering, is it possible to hide label for a disabled column?

With columnFiltering, is it possible to hide label for a disabled column?

lietyliety 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!

Answers

  • lietyliety Posts: 2Questions: 1Answers: 0

    Ugh. My bad. Think I wrote it into my footer manually somewhere in my page.

This discussion has been closed.