2012-06-27 24 views
6

En el ExtJS 3.3.1, traté de hacer que comboBox sea multiselección, pero no funciona.EXTJS comboBox multiselect

Por favor ayuda.

var mArray = new Array("ALL", "AAA", "BBB"); 
     var mCombo = new Ext.form.ComboBox({ id: 'ID', fieldLabel: 'ID', 
      triggerAction: 'all', 
      height: 100, width: 163, 
      multiSelect: true, 
      store: mArray 
     }); 
     Ext.getCmp('mCombo').setValue("ALL"); 

Respuesta