HTML Page with GWT -
is possible have parts (instead of entire page) of html page written gwt? usual?
i'm quite new gwt , trying understand workflow of it.
thanks.
i meant html static pages, written hand (or other means) , on these pages have parts (forms, media, whatever...) in gwt.
yes, simplest way can achieved setting id attribute on elements want filled in gwt, e.g.
<body> <div> ... <div id="myid"></div> </div> </body>
, , using
rootpanel myidpanel = rootpanel.get("myid");
so can put gwt contents myidpanel.
note, there many more ways mix html that's generated gwt , other means - combination possible.
Comments
Post a Comment