私が使用しているEXTJS 4でフォームを編集しているときに、Boxselect xtypeに複数選択されたデータをロードする方法はありますか
Ext.getCmp('boxselect id').setValue(5,6,7,10).
上記のコードは、値を設定するために単一の値を指定すると機能しますが、ボックス選択は複数選択タイプであるため、フォームを編集するときに複数の選択されたデータをロードすることが私の条件です。
{
xtype : 'boxselect',
store : 'store',
name: 'attributes',
id: 'attributes',
displayField: 'name',
valueField: 'abbr',
multiSelect : true,
fieldLabel: 'Attribute',
allowBlank: false,
editable: true,
allowQueryAll : false,
forceSelection : true,
typeAhead: true,
triggerAction: 'all',
delimiter : ','
},