Hi,
I have a RadAutoCompleteBox and a CSS style to color the box differently depending on if the box is disabled or not.
Everything works fine except for when I have the AllowCustomEntry set to true.
When set to false (And the control disabled), the background and fore color both change to the color I want.
When set to true (And the control disabled), the background color changes, however, the fore color remains the same.
Code:
CSS:
Is there anything I can do to get the text color to change when the AllowCustomEntry is set to true?
Thanks!
I have a RadAutoCompleteBox and a CSS style to color the box differently depending on if the box is disabled or not.
Everything works fine except for when I have the AllowCustomEntry set to true.
When set to false (And the control disabled), the background and fore color both change to the color I want.
When set to true (And the control disabled), the background color changes, however, the fore color remains the same.
Code:
<telerik:RadAutoCompleteBox ID="ACP_Name" runat="server" DropDownHeight="150px"Skin="Default" DropDownWidth="200px" Style="z-index: 1; left: 220px; top: 167px;position: absolute; height: 22px; width: 210px" OnClientRequesting="OnClientRequesting"InputType="Text" AllowCustomEntry="True" TextSettings-SelectionMode="Single"><WebServiceSettings Method="GetName" Path="MyWebService.asmx" />
</telerik:RadAutoCompleteBox>CSS:
div.RadAutoCompleteBox_Default .racDisabled { background-color: #000099; border-color: #FFFFFF; color: #CCCCCC; }Is there anything I can do to get the text color to change when the AllowCustomEntry is set to true?
Thanks!