Using Vaadin Widgets in a GWT Application

Can I use widgets from the Vaadin-framework from the GWT application?

I know this works the other way around, which is also described in the Vaadin docs. But I did not find a description for integrating Vaadin widgets in a regular GWT application.

+7
gwt vaadin
source share
1 answer

Unfortunately, no, at least not out of the box. Vaadin uses a server-side architecture, which means that all widget states are stored on the server, not in the browserโ€™s memory, which makes the widgets server-dependent. The connection between the client part of the widget and the server is implemented deep in the Vaadin core, so I think that for the widget to work, it will take quite a lot of work to work in a clean GWT environment.

+7
source share

All Articles