This is a migrated thread and some comments may be shown as answers.

appoinments do not show up. Why?

1 Answer 58 Views
Scheduler and Reminder
This is a migrated thread and some comments may be shown as answers.
Ming Zhao
Top achievements
Rank 1
Ming Zhao asked on 20 Jan 2010, 04:04 PM
We set an appoinment with recurrence rule as dailyrecurrencerule with start date as 1/20/2010 and end date as 1/27/2010.


Appoinments show up correctly on day view and week view but none of them show up on month view.

Why?

1 Answer, 1 is accepted

Sort by
0
Dobry Zranchev
Telerik team
answered on 21 Jan 2010, 08:57 AM
Hello Ming Zhao,

Thanks for your question. We cannot reproduce exactly the problem. I am using the following code to reproduce it:

DateTime dtStart = new DateTime(2010, 1, 20, 8, 0, 0);
DateTime dtEnd = new DateTime(2010, 1, 20, 10, 0, 0);
Appointment appointment = new Appointment(dtStart, dtEnd, "Meeting", "WPF Meeting", "Room 206");
 
appointment.RecurrenceRule = new WeeklyRecurrenceRule(new DateTime(2010, 1, 20), new DateTime(2010, 1, 27), WeekDays.Wednesday | WeekDays.Friday, 1);
 
this.radScheduler1.Appointments.Add(appointment);

It represents a similar case like yours. Please sent us a sample application so that I can help you further. You need to open a new support ticket so that you can attach files. 

Best wishes,
Dobry
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
Tags
Scheduler and Reminder
Asked by
Ming Zhao
Top achievements
Rank 1
Answers by
Dobry Zranchev
Telerik team
Share this question
or