enable() and disable() are invalid methods for a RadComboBox.
This does not work:
var cb = document.getElementById("<%= RadComboBoxBIN.ClientID %>");
cb.enable();
I have to use document.getElementById because $find returns null.
Why can I not use enable()/disable() now? What do I use instead?
This also does not enable or disable the combobox. It does not cause an error like enable()/disable() does but it has no effect.
document.getElementById(
"<%= RadComboBoxBIN.ClientID %>").disabled = false;
document.getElementById(
"<%= RadComboBoxBIN.ClientID %>").disabled = true;
Does anyone have any ideas?