I´m using dandelion-datatables with ThymeLeaf and serverside="true". When I set dt:filterable="true" or dt:filterable="false"on the <th>´s the page render correctly the filter inputs but in server side I always get true for all columnDef.isFilterable() in the DatatablesCriterias
There's actually no issue here, but a badly chosen method name. ColumnDef#isFilterable() has nothing to do with dt:filterable but with dt:searchable instead. :-)
I´m using dandelion-datatables with ThymeLeaf and
serverside="true"
. When I setdt:filterable="true"
ordt:filterable="false"
on the<th>
´s the page render correctly the filter inputs but in server side I always gettrue
for allcolumnDef.isFilterable()
in theDatatablesCriterias
Thanks you very much.