<telerik:RadMaskedTextBox SelectionOnFocus="SelectAll" TabIndex="2" Columns="12" PromptChar="" DisplayMask="###-###-####" ID="txtContactPhone" Mask="###-###-####" runat="server" Skin="Web20" />
<asp:regularexpressionvalidator CssClass="Normal" id="Regularexpressionvalidator2" controltovalidate="txtContactPhone" ValidationExpression="^[2-9]\d{2}-\d{3}-\d{4}$" ErrorMessage="Invalid contact phone." display="Dynamic" Runat="server"/>
<asp:requiredfieldvalidator cssclass="Normal" controltovalidate="txtContactPhone" errormessage="Required." display="dynamic" runat="server" ID="Requiredfieldvalidator2"/></td></tr>
| <telerik:RadComboBox ID="rcbEnteredBy" runat="server" |
| EnableLoadOnDemand="true" |
| AllowCustomText="true" |
| ChangeTextOnKeyBoardNavigation="True" |
| IsCaseSensitive="False" |
| EnableEmbeddedSkins="False" |
| Skin="Moneta" |
| MarkFirstMatch="True" |
| ShowDropDownOnTextboxClick="true" |
| Height="200" Width="150" |
| HighlightTemplatedItems="true" |
| OnClientItemsRequesting="OnUserItemsRequesting" |
| TabIndex="4"> |
| <WebServiceSettings Method="GetUsers" Path="~/Services/Facility.svc" /> |
| <ItemTemplate> |
| <ul> |
| <li><%#DataBinder.Eval(Container.DataItem, "UserName")%></li> |
| <li><%#DataBinder.Eval(Container.DataItem, "FullName")%></li> |
| </ul> |
| </ItemTemplate> |
| </telerik:RadComboBox> |
Hi all,
I want to change the backcolor of the buttons whenever it is selected,
like the behaviour here when I'm trying to create a new thread.
when i select the bold or italics, the selected color would be color blue.
i seem to have found out that when selecting an item, there is a class named rade_tool_selected, but when i try to do this:
<style type="text/css">
myclass .rade_tool .rade_tool_selected
{
background-color:blue;
}
</style>
this doesn't seem to work, please help me.
thanks,
regards,
jonathan