javascript - EXTJS comboBox multiselect -


in extjs 3.3.1, tried make combobox multi select , doesn't work.

please help.

 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"); 

there isn't config option multiselect in ext.form.combobox.
desired functionality either need develop multiselect combobox own or use 1 of existing alternatives, ext.ux.form.checkboxcombo, ext.ux.form.superboxselect , ext.ux.form.lovcombo.


Comments

Popular posts from this blog

c# - SVN Error : "svnadmin: E205000: Too many arguments" -

c# - Copy ObservableCollection to another ObservableCollection -

All overlapping substrings matching a java regex -