I wrote below code, I could not set the panel to the rightmost side of the container. I want control in moving the panel all the sides, like east, west, north and south.
public void onModuleLoad() {
Viewport viewport = new Viewport();
viewport.setLayout(new FlowLayout());
viewport.add(createContainer());
RootPanel.get().add(viewport);
}
private Widget createContainer() {
// TODO Auto-generated method stub
LayoutContainer container = new LayoutContainer();
container.setLayout`enter code here`(new BorderLayout());
ContentPanel panel = new ContentPanel(new FitLayout());
panel.setHeading("The Legend");
BorderLayoutData westData = new BorderLayoutData(LayoutRegion.WEST, 250);
westData.setSplit(true);
westData.setCollapsible(true);
westData.setMargins(new Margins(0, 3, 0, 0));
container.add(panel, westData);
return container;
}
Can someone help?
It looks like your are using GXT. This is a very important information because GXT layout uses other classes than native GWT layout.
Take a look a the Sencha Showcase:
http://www.sencha.com/examples/#ExamplePlace:borderlayout
The BorderLayout example shows how to create a border layout.
First create a BorderLayoutContainer:
Then create panels for the areas you like to have:
After creating the ContentPanels define the BorderLAyoutData for each ContentPanel:
After you have defined the layouts, just add your widgets to the BorderLAyoutContainer:
Finally, add the BorderLAyoutContainer to the viewPort:
To put your widget on the right most side, use:
Hope that helps.