When I enable a RadComboBox on the client side like comboBox._enabled = true;, and the AllowCustomText property is already true, the input element should also be enabled. But it isn't.
I have to make a separate check and call like so.
I have to make a separate check and call like so.
if (comboBox._allowCustomText == true) comboBox._inputDomElement.disabled = false;