Is there a way to display dates from a RadScheduler on a RadCalendar. I've taken a look at the outlook 2007 example at http://demos.telerik.com/ASPNET/Prometheus/Scheduler/Examples/Outlook2007/DefaultCS.aspx
But i don't see how the RadScheduler dates are binded to the RadCalendar.
3 Answers, 1 is accepted
0
Vlad
Telerik team
answered on 03 Sep 2008, 07:32 AM
Hi Richard,
Please check the code behind of the example using the example code viewer. Here is a snippet: protectedvoid RadScheduler1_NavigationComplete(object sender, SchedulerNavigationCompleteEventArgs e)
{
RadCalendar1.FocusedDate = RadScheduler1.SelectedDate;
SyncCalendars();
}
Best wishes,
Vlad
the Telerik team
Check out Telerik Trainer, the state of the art learning tool for Telerik products.
I see how it sets the selected date, but how does it set appointments from the RadScheduler onto the RadCalendar eg. reoccuring appointments.
0
Peter
Telerik team
answered on 03 Sep 2008, 03:15 PM
Hello Richard,
Could you please be more specific what exactly you need to achieve? The AppointmentCreated event fires for all visible appointments in RadScheduler. Have you considered using this event to set special days for RadCalendar from code-behind?
The Outlook 2007 example uses the AppointmentDataBound event to set the special days for RadCalendar.