I have a function that I call on 'on-value-changed' event for a Text Area. The issue is that the event fires after tabbing as expected. However instead of tabbing if, after making a change to the content of the Text Area, I click another button on the same page, the 'on-value-changed' event fires (which is expected), but the click event behind the button doesn't fire and hence the user has to click the button again to achieve the functionality behind the button.
Is there a way for this use case where after the user makes a change to the text are and instead of tabbing, clicks the button, can I:
- Fire the on-value-changed event (which is already happening) followed by
2)Fire the click event tied to the button (this is not happening).
Really appreciate any help on this. This is for an urgent requirement that I am working on currently.