What is and how to use Debounce?

What is and how is used debounce ???

Captura de Pantalla 2024-02-16 a la(s) 11.07.03

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