I would like to perform filter for only one colume like $("#example td:first-child").dataTables()
I would like to perform filter for only one colume like $("#example td:first-child").dataTables()
seheri
Posts: 2Questions: 1Answers: 0
But its not working for me..any suggestions would be helpful to me.
This discussion has been closed.
Answers
Filter should be done only for first column like $("#example td:first-child")
How about
table.column( 0 ).search( ... ).draw();
? That uses thecolumn()
method with a selector.Allan