How can I embed a webpage in a GWT/GXT webapp? -
I am working to recreate a prototype (conceptually) written in Cappuccino in GDT / GXT. Cappucinan used a webview to make it smaller to display an external webpage as part of the application.
However, I can not find any way to do this with GWT / GXT. Have an HTML Contender Widget, but is it intended for something else, any suggestions on how to do it?
You can set the URL of
like
ContentPanel Panel = New ContentPanel (); Panel.setUrl ("http://www.url.com/page"); Panel.setHeaderVisible (wrong); Panel.setBorders (wrong); Panel.setBodyBorder (wrong);
You can also do this also for the GXT window class.
Comments
Post a Comment