how can i put Select option filtration in datatables?
how can i put Select option filtration in datatables?
djgraphics123
Posts: 1Questions: 1Answers: 0
how can i put Select option filtration in datatables? so that not only inputbox search is in there. thanks
This discussion has been closed.
Answers
See if
column().search()
will do what you want.Kevin
To expand upon that a little the answer is yes, you can use any input you want for filtering - but you need to use the API to actually perform the filtering action. So you would have a
change
event listener on your select input for example that would call method Kevin suggested.Allan