-
-
Notifications
You must be signed in to change notification settings - Fork 55
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
debounce on input change, but immediate on blur #228
Comments
+1 |
well debounce does not know about events the way I see it is there can be another behavior combining the two.. but its kinda not dry plugin? |
I guess rx from events or something should do the trick @EisenbergEffect can be closed |
I'm pretty sure that a custom binding behavior could be written to do this. If someone wanted to submit a PR to the current |
Hi!
It would be great to have the same functionality as in angular 1: https://docs.angularjs.org/api/ng/directive/ngModelOptions That is:
ng-model-options="{ updateOn: 'default blur', debounce: { 'default': 500, 'blur': 0 } }"
The use case is that we want a debounce delay when typing (on e.g. input fields) but an immediate update on blur.
The text was updated successfully, but these errors were encountered: