Hi
In the code of virtualCombobox
There is a method called __onSelectionChange

     /**
     * Handler to synchronize selection changes with the value property.
     *
     * @param event {qx.event.type.Data} The change event from the
qx.data.Array.
     */

    __onSelectionChange : function(event) {
      if (this.__ignoreChangeSelection == true) {
        return;
      }

      var selected = this.__selection.getItem(0);
      selected = this.__convertValue(selected);

      this.setValue(selected);
    },

I think this should be modified. Because if the currentSelection is empty,
then
getItem(0) return undefined
__convert(undefined) will return undefined
Then set value will fail. I suspect that is because the undefined value
can't be matched with any item of the list.

Before submitting a bug report, i want to be sure that it wont be an issue
if this method do a early return


-- 
Benjamin Dreux
Analyste-Programmeur
Chaire de logiciel libre-Finance Social et solidaire
UQAM
Montréal
------------------------------------------------------------------------------
Don't let slow site performance ruin your business. Deploy New Relic APM
Deploy New Relic app performance management and know exactly
what is happening inside your Ruby, Python, PHP, Java, and .NET app
Try New Relic at no cost today and get our sweet Data Nerd shirt too!
http://p.sf.net/sfu/newrelic-dev2dev
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to