Creating widgets in GWT and using them on my existing website

I just started to learn GWT. My question is pretty simple:

If I create some widgets in GWT, say a calculator widget, and I want to use this widget in my existing PHP or JSP web application, then how can I do this?

I mean the GWT book in action for teaching GWT.

+3
source share
1 answer

Link the * .nocache.js script files and add the iFrame history to the PHP or JSP host page.

Just add a div with a well-known identifier, say, a “marker” in your HTML host.

GWT div RootPanel.get( "marker" ).add(< > )

+5

Source: https://habr.com/ru/post/1752482/


All Articles