views:

502

answers:

1

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

A: 

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; }
Alison
I wasn't able to get that working please. Where do I modify this? What I did was add this directly in my page and that did not work. I also modified the site css document and that did not work. any ideas where this ought to go?
Kobojunkie
<telerik:RadComboBox ID="rcpos" ForeColor="Yellow" BackColor="blue" runat="server" Width="200" Enabled="false"></telerik:RadComboBox>
Kobojunkie
What are you putting inside the <ItemTemplate> of the ComboBox
Alison