Capture search filter event in datatable JQuery plugin
Capture search filter event in datatable JQuery plugin
meri12
Posts: 1Questions: 1Answers: 0
I need to capture the event once the user uses the filter in Datatable JQuery plugin. I have written a Jquery that sets the filter for every column using Datatable.When the user selects a particular column and keys in input,I need to capture that event.I looked at the documentation and I am not able to find it.Can someone provide me the link or the code to detect the search event in datatable.
This discussion has been closed.
Answers
DataTables provides a
search
event, but it actually sounds like you just want to capture the regularkeyup
event from your input element, like you would with any input and jQuery.Allan