You can fetch the jQuery instance of the input control used in the ComboBox and set the attribute readonly to true.
oComboBox.addEventDelegate({ onAfterRendering: function() { oComboBox.$().find("input").attr("readonly", true); } });
You can fetch the jQuery instance of the input control used in the ComboBox and set the attribute readonly to true.
oComboBox.addEventDelegate({ onAfterRendering: function() { oComboBox.$().find("input").attr("readonly", true); } });