The 'Search' input length limit
The 'Search' input length limit
Viktoria
Posts: 2Questions: 1Answers: 0
Hello,
I'm using datatable's filtering:
var table = $("#myTable").DataTable({
ajax: {
...
},
columns: [...
],
...
filter: true,
...
});
I would like to ask is there a length limit of the 'Search' input field?
Is it possible to set such a limit?
Thank you in advance for your help.
This question has an accepted answers - jump to answer
This discussion has been closed.
Answers
There is not one but you can add one easy enough with your preinit hanlder
Thank you so much! It works perfectly!