Hie

I am trying to create some gwt layout and it shows nothing.

here is the code:

public void onModuleLoad() {
SplitLayoutPanel container = new SplitLayoutPanel();
 container.addNorth(new HTML("north"), 2);
container.addSouth(new HTML("south"), 5);
 container.addEast(new HTML("east"), 2);


    StackLayoutPanel menu = new StackLayoutPanel(Unit.EM);
    menu.add(new HTML("this"), new HTML("[this]"), 4);
    menu.add(new HTML("that"), new HTML("[that]"), 4);
    menu.add(new HTML("the other"), new HTML("[the other]"), 4);

    container.addWest(menu, 5);
    container.add(new HTML("center"));
    RootLayoutPanel rp = RootLayoutPanel.get();
    rp.add(container);
}

any idea what i m missing?

Thankx and Regards

Vik
Founder
www.sakshum.com
www.sakshum.blogspot.com

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to google-web-tool...@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.

Reply via email to