using ExtJS 3 here. I just noticed (in reply to my previous question) that the problem appears only when I'm not sending more than one combobox name. I currently have setup my combobox's name like this name[]
because I will send an array of values. If I remove the array []
, it works but I can only grab the last sent combobox value. My config is a SuperBoxSelect for multiple select purposes but this happens to my combobox also:
new Ext.ux.form.SuperBoxSelect({
store:storeForCompanies,
fieldLabel:'CN',
id:'companyField',
displayField: 'company_name',
valueField: 'id',
name:'cn',
hiddenName: 'company[]',
typeAhead: true,
mode: 'remote',
minChars : 0,
triggerAction: 'all',
emptyText:'- Choose -',
selectOnFocus:true,
allowBlank:true,
width: 350
})
Do I have any other options to send those ?
Thanks.