How can I set the RadTextBox disabled style using .css file? Somehow the style is not being recognized.
<telerik:RadTextBox ID="RadTextBox1" runat="server" Text="Johnson Grammer" Skin="Office2007">
<DisabledStyle CssClass="disableField" />
</telerik:RadTextBox>
My style sheet entries. I tried both but didn't work. What am i doing wrong?
.disableField .RadInput .riTextBox
{
background-color: #EFEFEF;
font-weight: bold;
}
.disableField1
{
background-color: #EFEFEF;
font-weight: bold;
}
I could achieve this by doing like this but I would like to use the.css so I can change at once.
<telerik:RadTextBox ID="RadTextBox1" runat="server" Text="Johnson Grammer" Skin="Office2007">
<DisabledStyle BackColor="#EFEFEF" BorderColor="Black" Font-Bold="True" />
</telerik:RadTextBox>
I found a style sheet example for Radcombobox from Telerik site which works great for RadComboBox. But was not able to get it work for text box.
http://www.telerik.com/help/aspnet-ajax/appearance-change-input-look-tutorial.html
Thanks in Advance.