In the Showcase of GWT Features - source code of the Dock Panel:
@Override
public Widget onInitialize() {
....
// Add text all around
dock.add(new HTML(constants.cwDockPanelNorth1()),
DockPanel.NORTH);
dock.add(new HTML(constants.cwDockPanelSouth1()),
DockPanel.SOUTH);
dock.add(new HTML(constants.cwDockPanelEast()), DockPanel.EAST);
dock.add(new HTML(constants.cwDockPanelWest()), DockPanel.WEST);
dock.add(new HTML(constants.cwDockPanelNorth2()),
DockPanel.NORTH);
dock.add(new HTML(constants.cwDockPanelSouth2()),
DockPanel.SOUTH);
...........
I found compile errors. "The constructor HTML (String,
DockPanel.DockLayoutConstant) is undefinded.
This is correct?
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---