how can you make the search field only filter the data when there is exact match?
how can you make the search field only filter the data when there is exact match?
cris19n
Posts: 55Questions: 18Answers: 0
I am using the server side, but I am experiencing that when I type in the search field in this there is a delay, also that when loading seven thousand data the search starts to have a considerable delay, so I only want it to be filtered when it matches it is exact, i dont know how else i can improve this performance.
I don't want it to make ajax calls to the server every time search input is written.
This discussion has been closed.
Answers
There is the
searchDelay
option which will reduce the number of requests to the server. Also there is a debounce solution in this thread that you might find useful.Kevin