One column search not working in datatable.Please help me
One column search not working in datatable.Please help me
swetalina
Posts: 8Questions: 2Answers: 0
This discussion has been closed.
Answers
Can you give us some help here. What column isn't searching!? I tried "economy" and that worked for me. Please provide repeatable steps on how to reproduce the problem
MYSTATUS column search not working. If i searching enable it not showing the result.
It is working since all your rows have both "Enable" and "Disable" in them they always match, for example:
You need to use orthogonal data. For that last column, you need to return another string in
columns.render
for typefilter
, something like```
columnDefs: [
{targets: -1, render: function(data, type) { return type === 'filter'? "" : data }}
]
Cheers,
Colin