I would like to update a text field instantly when typing in a GWT TextBox. My problem is that ValueChangeEvent and ChangeEvent handlers only fire when the TextBox loses foc
I prefer use Elements than Widgets so this my way to handler.
Elements
Widgets
Element input = Document.get().getElementById("my-input"); DOM.sinkBitlessEvent(input, "input"); DOM.setEventListener(input, event -> GWT.log("Event!"));