开发者

Changing RadCombobox Font Color when Disabled in ASP.NET

开发者 https://www.devze.com 2022-12-14 15:05 出处:网络
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?

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; }
0

精彩评论

暂无评论...
验证码 换一张
取 消