What do your store and multiselect item look like (please use code tags, # on toolbar)? Also, your json.
I noticed you are on the other side of the world and a back and forth conversation might take a while.
So, I will add that I took the multiselect example and changed to use a store with json data. Seemed to work.
http://docs.sencha.com/ext-js/4-0/#!...lect-demo.html
Code:
var ds2 = Ext.create('Ext.data.Store', {
data: [{value: 123, text: 'One Hundred Twenty Three'},
{value: '1', text: 'One'},
{value: '2', text: 'Two'},
{value: '3', text: 'Three'},
{value: '4', text: 'Four'},
{value: '5', text: 'Five'},
{value: '6', text: 'Six'},
{value: '7', text: 'Seven'},
{value: '8', text: 'Eight'},
{value: '9', text: 'Nine'}],
fields: ['value','text'],
sortInfo: {
field: 'value',
direction: 'ASC'
}
});
Code:
items:[{
anchor: '100%',
xtype: 'multiselect',
msgTarget: 'side',
fieldLabel: 'Multiselect',
name: 'multiselect',
allowBlank: false,
// minSelections: 2,
// maxSelections: 3,
displayField: 'text',
valueField: 'value',
store: ds2,
value: ['3', '4', '6'],
ddReorder: true
}],