Nice post! I recently started using fromEvent, cool stuff can be done with it also!
I started using it, for debounced input search, to not perform more requests than needed.
For observing inputs, you might consider using reactive forms and subscribing to the valueChanges observable on the form or formControl in question.
Ohh true, I did not consider this approach, I didn't like to have to pass in the element reference to fromEvent, I don't usually like manipulating elements directly so the reactive form could be a really nice solution.
fromEvent
Thanks for the info!
That won't help with enter key which is often used.
enter
Are you sure you want to hide this comment? It will become hidden in your post, but will still be visible via the comment's permalink.
Hide child comments as well
Confirm
For further actions, you may consider blocking this person and/or reporting abuse
We're a place where coders share, stay up-to-date and grow their careers.
Nice post! I recently started using fromEvent, cool stuff can be done with it also!
I started using it, for debounced input search, to not perform more requests than needed.
For observing inputs, you might consider using reactive forms and subscribing to the valueChanges observable on the form or formControl in question.
Ohh true, I did not consider this approach, I didn't like to have to pass in the element reference to
fromEvent
, I don't usually like manipulating elements directly so the reactive form could be a really nice solution.Thanks for the info!
That won't help with
enter
key which is often used.