The ComboBox CellEditor has an event handling problem in FF2 and FF3. If the combobox dropdown list overlays rows in the table and you select an item, the focus indicator in the table (darkblue bar) will move to the row under the item which was selected. A lightblue focus indicator remains on the row containing the ComboBox cell editor.
If the item you select is beyond the end of the table, the control works as expected. You can see this behavior in the Table_CellEditor_1 demo. I have traced this to the _onmouseup() function in qx.ui.form.Combobox. The _onmouseup() function does not stop propogation of the event and it looks like the undelaying table gets the event and moves the dark blue focus indicator. Adding a "e.stopPropagation()" call in _onmouseup() in qx.ui.form.ComboBox seems to fix the problem, but don't know if it breaks anything else. This problem does not exist in IE7. -- View this message in context: http://www.nabble.com/ComboBox-CellEditor-problem-in-FF2-and-FF3-tp18237085p18237085.html Sent from the qooxdoo-devel mailing list archive at Nabble.com. ------------------------------------------------------------------------- Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW! Studies have shown that voting for your favorite open source project, along with a healthy diet, reduces your potential for chronic lameness and boredom. Vote Now at http://www.sourceforge.net/community/cca08 _______________________________________________ qooxdoo-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
