I want to handle events when user pastes some text in TextBox. Which event is fired in this situation? I tried ValueChange and Change handlers, but they didn’t work.
I want to handle events when user pastes some text in TextBox . Which
Share
This might help you. Describes a workaround to hook to the onpaste event.
In short:
subclass
TextBoxsink the onpaste event in the constructor
override
onBrowserEvent(Event event)