Catching Javascript events

Hi,

I want to be able to route javascript events like onMouseOver or onClick link events to my Vaadin app. Is this possible?

Thanks.

If the desired component does not support such listeners on the server side, you will have to create your own component with client side implementation that handles such events and notifies server about them.

Most of the time you should be able to extend existing Vaadin component both on the server and client side. Consult the Vaadin book for details regarding creating own components.