This question is locked. New answers and comments are not allowed.
Hi,
I have a ComboBox that is defined as follows:
@(Html.Telerik().ComboBoxFor(m => m.AvailablePIDs) .Name("ComboPids") .HtmlAttributes(new { style = "width:400px;vertical-align:baseline" }) .Filterable(f => f.FilterMode(AutoCompleteFilterMode.Contains)) .ClientEvents(events => events.OnChange("onComboPidsChange")) .BindTo(Model.AvailablePIDs) )
After the data is bound to this control, I want to go in and disable certain items in the drop down, and I can't for the life of me figure out how to do it. In the API I see a way to disable the entire control, but no way to access the individual items other than to highlight them. Is there an easy way to disable items in a drop down?
Any help would be greatly appreciated.
Thanks,
Beth