Have a RadGrid with the Skin set to “Web20” but the DataPicker on a GridDataTimeColumn does not show the header items like prev, next, month and year when I click on the calendar. “<< < Month Year > >>” If I switch to “Vista” or "Windows7" it works fine. Looks like same problem exists with "WebBlue".
<telerik:RadGrid ID="RadGrid1" runat="server" DataSourceID="LinqDataSource1" Skin="Web20"
GridLines="None" AllowAutomaticDeletes="True" AllowAutomaticInserts="True"
AllowAutomaticUpdates="True" onitemcreated="RadGrid1_ItemCreated1" AllowSorting="True"
AllowPaging="True" PageSize="15" Width="100%">
<PagerStyle Mode="NextPrevAndNumeric"></PagerStyle>
<telerik:GridDateTimeColumn UniqueName="Date" PickerType="DatePicker" HeaderText="Date" DataField="Date" DataFormatString="{0:MM/dd/yyyy}" HeaderButtonType="TextButton">
<ItemStyle Width="120px" />
</telerik:GridDateTimeColumn>