hi there,
try create toolbar to the panel and add it to the bottom

        Panel panel = new Panel();
        panel.setBorder(false);
        panel.setPaddings(15);

        Toolbar toolbar=new Toolbar();
        toolbar.addItem(new ToolbarTextItem("Select Country "));
        toolbar.addSpacer();

        final ComboBox cb = new ComboBox();
        cb.setWidth(200);
        cb.setHideTrigger(false);

        toolbar.addField(cb);
        panel.setBottomToolbar(toolbar);




On Nov 21, 9:58 am, Ronak Patel <[EMAIL PROTECTED]> wrote:
> Hey,
>
> I was wondering if there is a way to add a Combobox to the footer of a
> panel, similar to how we can add a button to the footer.
>
> This is typically done by:
>
> Panel panel = new Panel();
> panel.addButton(new Button("Hello"));
>
> Is there something similar for Combo Box or any other component?
>
> Thanks

--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to