What is and how is used debounce ???
Debounce is the delay between the page changing and the action occuring. So you can set a delay (in miliseconds) for when a value is changed and that delay will happen before the server-side action. Perfect for things like autocomplete so it doesn’t keep processing on every keystroke. You can get it to wait for half-a-second (value of 500) before processing it.
1 Like
1 Like