Hi,
1) I am disabling a RadComboBox on code behind:
<telerik:RadComboBox ID="nfServingSizes" runat="server" Width="120px" MaxHeight="450px" Enabled="false" OnClientSelectedIndexChanged="nfServingSizes_SelectedIndexChanged"></telerik:RadComboBox>
Once displayed, it is correctly disabled (disabled) and does not response to any events as expected.
2) On JavaScript, after an Ajax callback it is enabled:
var combo = $find("<%= cmb.ClientID %>");
combo.enable();
2) Then items are added:
item = new Telerik.Web.UI.RadComboBoxItem();
item.set_text(result.Weights[i].Quantity + " " + result.Weights[i].Unit);
items.add(item);
.. more items in a loop ..
item.select();
The dropdown displays the added items and starts responding to events, but the displayed text remains grayed-out.
It works properly on FF 3.5. The text is grayed out on IE7 and IE8.
Thanks.