> > > > The dropdown list of the ComboBox doesn't work in firefox3. 
> > > > It does work in ie7 and others.
> > > >  
> > > > Is this a known bug, and if so, how do i work around it ?
> > > We have fixed some FF3 issues in the legacy_0_7_x branch. Could
you
> > > update your qooxdoo and check,
> > > whether the problem still exists?
> > The part about it working in anything but ff3 is wrong, it also
> > doesn't work in Opera9.
> > So that suggests that i'm doing somethign wrong and ie7 just does
> > somethign that makes it work again.
> > The demo does work for me, so i'm a bit lost now.
> > I'm not sure how to make a small example because we generate the
> > qooxdoo from other code at runtime.
> > Could it be an issue with zlayers ? The combobox is inside a
qx.window
> > thing.
> Well i upgraded to 0.7.4-pre. It does not solve this issue.
> I do get a new error when disposing everything on the page.
> WARN: Could not dispose: [object qx.ui.layout.HorizontalBoxLayout]:
> TypeError: this.getPaneScroller(0).getTablePane() is null

I found that the list of the combo box is visible below the window if i
make the window with a low height.

I have tried to make an example showing the problem:

The issue disappears when i do not create the window maximized.


var d = qx.ui.core.ClientDocument.getInstance();


var w1 = new qx.ui.window.Window("Window");
w1.setSpace(20, 400, 20, 250);
w1.setBackgroundColor("#000000");
w1.setMode("maximized");

d.add(w1);
w1.open();

var c1 = new qx.ui.form.ComboBox;
c1.set({ top: 20, left:20});

var item;
for (var i=1; i<=30;i++)
{
        item = new qx.ui.form.ListItem("Item No "+ i);
        c1.add(item);
}

w1.add(c1);

-------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to