I'm brand new to GWT and am using the GWT Designer to help acclimate me to it. So far I've been able to get a few simple examples up and running locally, but after trying to figure out how to do a few things myself, and not being able to find answers to them in the GWT docs, I have a few questions regarding the Designer and its usage:
TableLayout
, I don't see it available in the Designer palette (even under the Cell Widgets section). Basically, I want the ability to organize my widgets in a tabular fashion and can't figure out how to do it.SafeHTML
, and why? How does the Designer promote this? I don't see any "Safe HTML" widgets in the Designer palette.HorizontalPanel
s, each of which contain an intricate nesting of other panels and widgets. How do you layout each of the major panels so as to produce a full-fledged page?Thanks in advance for any help here!
Cell
library was meant to extended from the ground up, so yes, you need to write this functionality yourself.CssResource
and ClientBundle
). Each display region is actually an AcceptsOneWidget
implementation, which you pass to whatever mechanism (usually a Presenter
or an Activity
implementation) you are using to control the view-portion of the app.