Priebe, Jason schrieb:
One final follow-up to this issue so that anybody who wants to
expand the popup for their combo box can do so.

Sebastian's suggestion on April 10 was to use

myComboBox.getPopup().getMaxHeight(150);

If you try setMaxHeight?


I found that you cannot just do this when you create the combo
box; I suspect that it has something to do with the fact that the
DOM elements are not created yet.

So what you have to do is add an event listener to the popup's
'appear' event:

myComboBox.getPopup().addEventListener ('appear', function (e)
{
    myComboBox.getPopup().setMaxHeight (800);

In this case you should also be able to use:
this.setMaxHeight(800);

Sebastian

});

Hope this helps somebody.

Jason Priebe
CBC New Media

-------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=k&kid0709&bid&3057&dat1642
_______________________________________________
Qooxdoo-devel mailing list
Qooxdoo-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel



-------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Qooxdoo-devel mailing list
Qooxdoo-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to