You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are some situations when I need the text in a text input while typing (on the fly search, etc...).
To prevent continuous property propagation with possible invalid values it can be a separated property with name like TextPreview or something else.
In the keyup event you can read the current (uncommitted) value of the textbox or textarea using the element.value field.
IMPORTANT: In the keyup event you don't get the last typed character, so you need to use a setTimeout(someFunction, 0);
The text was updated successfully, but these errors were encountered:
FR impementation for issue #88 and #89
InputText: builder, renderer, model udpated with maxLength and immediate
properties
Textarea: builder, renderer, model udpated with maxLength and immediate
properties
There are some situations when I need the text in a text input while typing (on the fly search, etc...).
To prevent continuous property propagation with possible invalid values it can be a separated property with name like TextPreview or something else.
In the keyup event you can read the current (uncommitted) value of the textbox or textarea using the element.value field.
IMPORTANT: In the keyup event you don't get the last typed character, so you need to use a setTimeout(someFunction, 0);
The text was updated successfully, but these errors were encountered: