Changing RadCombobox Font Color when Disabled in ASP.NET
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; 开发者_JS百科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; }
精彩评论