Keyup event not firing for individual column filters
Keyup event not firing for individual column filters

Link to test case: https://live.datatables.net/ronajuxi/1/edit?html,css,js,output
Debugger code (debug.datatables.net): Debugger produced nothing when I ran it - almost as if it did not run. I have run it successfully on other samples
Error messages shown: No error messages shown
Description of problem:
I am using the example provided here to filter by individual column: https://datatables.net/extensions/fixedcolumns/examples/styling/col_filter.html
The only thing I changed was moving the filtering inputs to the top of the table. Everything seems to be working except the keyup event. That even wasn't firing even when all the inputs were in the footer. I've not had much luck looking for solutions online or in the forums. What am I missing here?
This question has an accepted answers - jump to answer
Answers
The event handler does fire. The problem is you have
searching: false,
which is disabling searching the Datatable. I commented it out in this updated test case:https://live.datatables.net/ronajuxi/2/edit
If you are wanting to remove the default global search input then use the
layout
option to remove it. See the default section of the docs to learn how.Kevin
Ugh - I knew it was something simple I was overlooking. I appreciate the quick response! Everything working as it should now