I finally managed to reproduce your problem.

I fixed it and will push it into the Git repository soon.

With the changes can do use the following code snippet, for dynamically update 
your picker slots:


    /**
     * Reacts on "changeSelection" event on picker, and displays the values on 
resultsLabel.
     */
    __onPickerChangeSelection : function(e) {
      var selectedIndex1 = e.getTarget().getSelectedIndex(0);
      var selectedIndex2 = e.getTarget().getSelectedIndex(1);
      
      if(e.getData().item == "qx.Mobile") {
        this.__pickerSlot2.push("test");
        e.getTarget().setSelectedIndex(0,selectedIndex1, false);
        e.getTarget().setSelectedIndex(1,selectedIndex2, false);
      }
     
    },



Am 31.01.2013 um 11:30 schrieb Christopher Zündorf:

> I can not reproduce your problem. Can you please provide a code snippet or an 
> example of you problem?
> 
> 
> 
> Am 29.01.2013 um 20:22 schrieb Ed Adasiewicz:
> 
>> ried to do this in a changeSelection
>> listener but I cannot determine how to update the day slot correctly --
>> whatever I try (e.g. push()/pop() or removeAll()/push()) leaves the day slot
>> in a weird state -- usually with duplicate entries.  Is there a way to do
> 
> ------------------------------------------------------------------------------
> Everyone hates slow websites. So do we.
> Make your web apps faster with AppDynamics
> Download AppDynamics Lite for free today:
> http://p.sf.net/sfu/appdyn_d2d_jan_______________________________________________
> qooxdoo-devel mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel


------------------------------------------------------------------------------
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_jan
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to