Disable filtering on some column(s) - not all column(s)
Disable filtering on some column(s) - not all column(s)
With reference to the link http://datatables.net/reference/option/columnDefs, I can see that if you assign a class to the TH for columns you are able to disable filtering for that column in question.
Therefore I would like to know how easy it is to assign a class e.g. "prevent-sorting" to the TH columns in a table and then use that as the "targets:" to prevent filtering in that column.
I do have an onclick function which passes parameters within the function and wondered if that could be one of the reasons as to why the search results that I receive are not correct.
Answers
Can't you use something like
"aoColumns": [{ "bVisible": true, "bSearchable": false, "bSortable": false},
I do not want to disable the search and sorting functionality altogether (or from the entire table), I only want to disable the search and sorting functionality from some of the columns in the table only.