Column Filtering
Column Filtering
fcbc.paul
Posts: 2Questions: 1Answers: 0
Link to test case: https://datatables.net/extensions/fixedheader/examples/integration/columnFiltering.html
Description of problem: Is there a way to exclude a column from being searchable? Is there a way to not show the footer?
This question has an accepted answers - jump to answer
Answers
Possibly add a class to the columns you want to apply the filters to. For example:
https://live.datatables.net/jegimaza/1/edit
You can either add the class directly to the
thead
(Position and Office in the example) or usingcolumns.className
(Name in the example). It uses thecolumn-selector
of the classname to only apply to the columns defined with the classcol-filter
.Kevin
Thanks, Kevin, that answered my question about excluding columns from being searchable.
Paul