So I'm in my RadScheduler and looking at the Week View. Let's say I click today's date, "Fri, 12" at the top of today's column. On Firefox's footer, I see the URL displayed by that link ends in #2010-11-12. However, when I click, it takes me to the DayView for the previous day, 11-11. The same thing happens in the MonthView, always one day too early.
What's going on here?
What's going on here?
<telerik:RadScheduler ID="RadSchedulerCalendarEvents" runat="server" Width="100%" Height="500" BorderStyle="None" BorderWidth="0" HoursPanelTimeFormat="h:mm tt" ShowFullTime="true" TimeSlotContextMenuSettings-EnableDefault="true" StartInsertingInAdvancedForm="true" DisplayRecurrenceActionDialogOnMove="true" EnableDatePicker="False" EnableDescriptionField="True" DataSourceID="SqlDataSourceEvents" DataKeyField="evtID" DataStartField="evtStartTime" DataEndField="evtEndTime" DataSubjectField="evtName" DataDescriptionField="evtDescription" DataReminderField="evtReminder" DataRecurrenceField="evtRecurrenceRule" DataRecurrenceParentKeyField="evtRecurrenceParentID" OnClientAppointmentInserting="RadSchedulerCalendarEvents_OnClientAppointmentInserting" OnClientAppointmentEditing="RadSchedulerCalendarEvents_OnClientAppointmentEditing" OnClientAppointmentMoveEnd="RadSchedulerCalendarEvents_OnClientAppointmentMoveEnd" OnClientAppointmentResizeEnd="RadSchedulerCalendarEvents_OnClientAppointmentResizeEnd" > <AdvancedForm Modal="true" /> <TimeSlotContextMenus> <telerik:RadSchedulerContextMenu runat="server" ID="SchedulerTimeSlotContextMenu"> <Items> <telerik:RadMenuItem Text="New Event" ImageUrl="/Images/Icons16x16/calendar.png" Postback="false" NavigateUrl="javascript: parent.newEvent('Calendar Event');" /> <telerik:RadMenuItem IsSeparator="true" /> <telerik:RadMenuItem Text="Go to today" Value="CommandGoToToday" /> </Items> </telerik:RadSchedulerContextMenu> </TimeSlotContextMenus> <AppointmentContextMenuSettings EnableDefault="true" /> <Localization ContextMenuAddAppointment="New Event" ContextMenuAddRecurringAppointment="New Recurring Event" ContextMenuEdit="Edit Event" /></telerik:RadScheduler>