Well, downloaded 0.6.2 today.
First off, thanks to whoever came up with ComboBoxEx, it's exactly what I was
looking for.
I doubt this is a bug, more my misunderstanding of the way objects interact.
Anyway, I pulled the ComboBoxEx demo to peices and have attempted to setup one
of my classes (creates a Yes/No Combo) using this new object.
// Select Fields (Yes/No dropdowns)
function ftmDataEntryYesNo (name, xPos, initialVal) {
var comboData = [[ '0', 'No' ],[ '1', 'Yes' ],[ '2', 'Blah Blah Blah Blah' ]];
var combo = new qx.ui.form.ComboBoxEx;
combo.sizeTextFieldToContent();
combo.setAllowSearch();
combo.setSelection(comboData);
return combo;
}
The thing I have noticed is that it works fine if I add the object to the core
document (var d = qx.ui.core.ClientDocument.getInstance();). If I add the
object to that, it works perfectly.
However if I add it to a window, The combobox shows, and clicking on the
dropdown button displays all of the options, however you cannot select them or
use the scrollbar. It's as if there is some invisible element on top of the
dropdown part of the ComboBoxEx. This was not a problem with ComboBox on the
same App.
Hope that makes sense, does anyone have any ideas?
Aaron-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel