alex.d schrieb:
> The best one, imho, is GWT Designer. Has everything you need. Worth to
> take a look:
> http://www.instantiations.com/windowbuilder/gwtdesigner/index.html
I agree with you, but just a little information to avoid
people wondering that try out the current version.
The current version of the GWT-Designer has a problem when adding
GUI-elements. The add-statement adding the widget to the parent-
element is always placed "at the end" of the settings. Here is an
example to clearify things:
Label l = new Label();
l.setWidth("100%");
channelContentPanel.setCellHeight(l, "100%");
channelContentPanel.setCellWidth(l, "100%");
channelContentPanel.add(l);
Within the preview of the designer everything works but as soon
as you enter the world of the browser (hosted and web mode), you
(of course) receive a JavaScriptException because "l" is not known
to the panel at the moment, e.g. when the cell-height is set.
So at the moment you have to manually edit the source for every
GUI-element being added.
I reported this to the support of Instantiations but haven't
received no response to that specififc issue, yet.
Best regards, Lothar
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Google Web Toolkit" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~----------~----~----~----~------~----~------~--~---