Hello!
I am having problem with trying to bind a MultiCombo to a store and allow users to select multiple values. I have no problem populating the drop-downs with the items from a store, but as soon as the MultiCombo loses focus, it seems to lose all the items I've selected. I have tried a simple test and the MultiCombo retained the selected values, but I can't seem to get it work on the original page although the code seems identical.

Here is what the code would look like:
    <ext:store runat="server" ID="stoMembers" AutoLoad="True" AutoDataBind="True" SerializationMode="Complex" GroupOnSort="True" OnRefreshData="Load_stoMembers">
        <Proxy>
            <ext:PageProxy />
        </Proxy>
        <Reader>
            <ext:ArrayReader runat="server" IDProperty="LoginName">
                <Fields>
                    <ext:RecordField Name="FullName" Type="String"/>
                    <ext:RecordField Name="LoginName" Type="String"/>
                    <ext:RecordField Name="MemberObject" IsComplex="True"/>
                </Fields>
            </ext:ArrayReader>
        </Reader>        
        <SortInfo Field="FullName" Direction="ASC" />        
    </ext:store>

    <ext:MultiCombo runat="server" ID="cboTest" FieldLabel="Assigned To" StoreID="stoMembers"
        DisplayField="FullName" ValueField="LoginName" width="800px"
        AutoDataBind="True" Mode="Local">   
        <Listeners>
            <Select Handler='alert("Select: " + this.getValue());'/>
            <Collapse Handler='alert("Collapse: " + this.getValue());'/>
            <Change Handler='alert("Change: " + this.getValue());'/>
            <Blur Handler='alert("Blur: " + this.getValue());'/>
        </Listeners>
    </ext:MultiCombo>
And here's the server-side code to populate the store:
    protected void Load_stoMembers(object sender, StoreRefreshDataEventArgs e)
    {
            //GetAssignableMembers returns a list of SiteUser object that contains FullName and LoginName of users
            List<SiteUser> userList = GetAssignableMembers(CurrentData, "AssignedTo");
            var dataList = new List<object[]>();

            foreach (SiteUser member in userList)
            {
                dataList.Add(new object[] {member.FullName, member.LoginName});
            }

            stoMembers.DataSource = dataList;
            stoMembers.DataBind(); 
        }
    }
This populates the store with user data, and I can see them in the MultiCombo drop-downs and select them, but as soon as MultiCombo loses focus, the field is set to blank and no items are selected. For testing, I've put listeners on the multicombo and it throws correct value when the items are selected and on collapse, but it does not trigger change event and at the blur event, it indicates MultiCombo contains no value.

I have tried hard-coding test data and it seemed to work! I have no idea on the difference between this code and the original server-side code:
    protected void Load_stoMembers(object sender, StoreRefreshDataEventArgs e)
    {
            var dataList= new List<object>
                              {
                                  new object[] {"User A", "AAA"},
                                  new object[] {"User B", "BBB"},
                                  new object[] {"User C", "CCC"}
                              };
            dataList.Add(new object[] {"User D", "DDD"});
            stoMembers.DataSource = dataList;
            stoMembers.DataBind();
        }
    }
This works and the multicombo retains value after blur. Any ideas on what the difference is and how to get it working? I've also tried JsonReader and it made no difference.

Thanks for any help.