I am using an ExtJS combobox. There is a typing cursor when focusing on the combobox. I tried to implement editable: false when creating the combobox, but it he
editable: false
Try -
For IE
combo.inputEl.set({disabled:'disabled'});
For Firefox -
combo.inputWrap.set({disabled:'disabled'});
For Chrome -
combo.inputCell.set({disabled:'disabled'});
This work fine.