hello,
i need to create an auto suggest field using vaadin …and i am new to vaadin finding easy to work with it… and …how to customize an textbox is there is any thing like keypress event or on key release event for textbox…
The standard TextField does not support listening for key events.
The
SuperImmediateTextField add-on
does let you listen for every change to the field. It might be possible to combine this with a mechanism for showing a popup, although you could probably improve the user experience (e.g. keyboard navigation between the field and the popup) by doing some client side programming, developing your own widget.