I am trying to use a RadDatePicker and when an invalid date is entered only part of the box is actually highlighted in red and the "apostrophe" icon is missing altogether. I am using the Bootstrap skin (applied in web.config). I tried removing the RequiredFieldValidator to make sure the CSS wasn't messing it up but that did not solve the problem. The demo from Telerik seems to work great with this skin. Any help would be appreciated. I have attached the demo screen shot from Telerik and from my page.
<div class="row">
<div class="col-md-6">
<asp:Label ID="lblEffDate" runat="server" Text="Effective Date:" CssClass="text-muted vendor-label-85"></asp:Label>
</div>
</div>
<div class="row">
<div class="col-md-6">
<telerik:RadDatePicker ID="rdpEffectiveDate" runat="server" Width="50%"></telerik:RadDatePicker>
<asp:RequiredFieldValidator ID="rfvEffDate" runat="server" Display="Dynamic"
Font-Size=".75em"
Font-Italic="true"
ErrorMessage="* required"
ForeColor="#F04124"
ControlToValidate="rdpEffectiveDate" ValidationGroup="NewItemValidation">
</asp:RequiredFieldValidator>
</div>
</div>