Hello, i have the following css class that has worked for almost every ASP.NET control i have worked with. it is used with the HighlighCssClass of validatorcalloutextender (see below). All it does is outline the field in red that are not valid, it does not work with the radtimepicker, and thoughts on how to get this to work?? I tried putting the same style on just the endTimeInput part, that does what i want, but when i point the requiredfieldvalidator to the DateInput of endTimeInput it errors and cant find the control, but this is the part of the control i want outlined in red. thanks
.ValidatorCallout
{
border:solid;
border-color:#FF0000;
border-width:2px;
}
<telerik:RadTimePicker ID="rad_TimeEnds" runat="server" Width="85px">
<TimeView ID="TimeView2" runat="server" StartTime="9:0:0" EndTime="22:31:00" Interval="0:30:0" Columns="5" TimeFormat="HH:mm" Culture="en-US"></TimeView>
<DateInput ID="endTimeInput" runat="server" DateFormat="HH:mm" Culture="en-US"></DateInput>
<DatePopupButton Visible="False"></DatePopupButton>
</telerik:RadTimePicker>
<asp:RequiredFieldValidator ID="req_TimeEnds" runat="server" ControlToValidate="rad_TimeEnds" Display="None" ErrorMessage="<B>End Time is required.</B>"></asp:RequiredFieldValidator>
<ajx:validatorCalloutExtender id="vce_TimeEnds" runat="server" HighlightCssClass="ValidatorCallout" TargetControlID="req_TimeEnds"></ajx:validatorCalloutExtender>
.ValidatorCallout
{
border:solid;
border-color:#FF0000;
border-width:2px;
}
<telerik:RadTimePicker ID="rad_TimeEnds" runat="server" Width="85px">
<TimeView ID="TimeView2" runat="server" StartTime="9:0:0" EndTime="22:31:00" Interval="0:30:0" Columns="5" TimeFormat="HH:mm" Culture="en-US"></TimeView>
<DateInput ID="endTimeInput" runat="server" DateFormat="HH:mm" Culture="en-US"></DateInput>
<DatePopupButton Visible="False"></DatePopupButton>
</telerik:RadTimePicker>
<asp:RequiredFieldValidator ID="req_TimeEnds" runat="server" ControlToValidate="rad_TimeEnds" Display="None" ErrorMessage="<B>End Time is required.</B>"></asp:RequiredFieldValidator>
<ajx:validatorCalloutExtender id="vce_TimeEnds" runat="server" HighlightCssClass="ValidatorCallout" TargetControlID="req_TimeEnds"></ajx:validatorCalloutExtender>