hi,
i have a westPanel with AccordionLayout, and other panel navPanel.
Now i want to add the button in the navPanel, with a FormLayout or
similar.
Button1
Button2
Button3
NOT Button1 Button2 Button3
the interested part of code is this:
AccordionLayout accordion = new AccordionLayout(true);
FormLayout flayout = new FormLayout();
Panel westPanel = new Panel();
westPanel.setTitle("Management");
westPanel.setCollapsible(true);
westPanel.setWidth(200);
westPanel.setLayout(accordion);
Panel navPanel = new Panel();
navPanel.setTitle("Filestore");
navPanel.setBorder(false);
navPanel.setIconCls("forlder-icon");
navPanel.setLayout(flayout);
Button sfilestore = new Button ("Show FileStore");
Button uploadFile = new Button("Upload File ");
navPanel.addButton(sfilestore);
navPanel.addButton(uploadFile);
navPanel.addButton(new Button("C"));
westPanel.add(navPanel);
where is the error?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"GWT-Ext Developer Forum" 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/gwt-ext?hl=en
-~----------~----~----~----~------~----~------~--~---