I have also faced the issue of combobox, in dialog as well as on
normal panel. For me it was disappearing after some message or alert
and on mouse over on it, it re-appear. The work around that I found
for it is to wrap the combo box in a panel.

Like:

Panel cbWrapperPanel = new Panel(); //GWT Ext panel
cbWrapperPanel.setBorder(false);
cbWrapperPanel.add(comboBox);

Hope this may help a little.

-Bakul.

On Sep 10, 4:53 pm, "Brian.Wagner" <[EMAIL PROTECTED]> wrote:
> I'm having two quite frustrating problems that I hope someone may have
> some insight into:
>
> First, I have a "dialog" that contains a number of panels.  Within
> these panels are a collection of widgets including labels and combo
> boxes.  My problem is that the rendering if the combo boxes is
> haphazard and inconsistent (at best) between the various browsers.  A
> summary is as follows:
>
> IE: they render correctly
> Firefox: combo boxes don't render at all
> Safari: the trigger arrow doesn't render
> Chrome: no trigger as well
>
> I have checked and double-checked all of the options being set on
> these combo boxes upon creation and they all appear correct according
> to existing documentation.  Does anyone know what is causing this???
> It seems to be related to the layouts used, or the sizes of the combo
> boxes, or something like that.  Another thing that I've noticed is
> that combo box triggers are NOT considered when determining the width
> of a combo box.  This is a big oversight when you consider that
> layouts such as the Horizontal layout are virtually useless because of
> this.
>
> Second,  occasionally when I display a window some of the contained
> panels and widgets are either completely missing or shifted out of
> their proper positions by a significant distance.  If I close the
> window and reshow it, the condition improves.  Almost always by the
> third time, everything is just fine and continute to work properly
> until the app is launched fresh again.  Once again, what the heck is
> going on???  This behavior seems so bizarre...any help would be
> greatly appreciated.
>
> Thanks,
>
> Brian
--~--~---------~--~----~------------~-------~--~----~
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