I am not exactly sure why this is not as easy as I expected. I need to change the font color of a disabled RadCombobox control . Any idea how I can do this please?
.RadComboBoxcss { background-color: #808080; color:Blue; font-weight:bold; }
I am not exactly sure why this is not as easy as I expected. I need to change the font color of a disabled RadCombobox control . Any idea how I can do this please?
.RadComboBoxcss { background-color: #808080; color:Blue; font-weight:bold; }
Try modifying the preset CSS selector for the RadComboBox. Take a look here.
It seems like the following should do the trick:
.rcbDisabled { background-color: #808080; color:Blue; font-weight:bold; }