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

Working with Recurrent Appointments

1 Answer 92 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
Natarajan
Top achievements
Rank 1
Natarajan asked on 29 Apr 2009, 06:33 AM
Hi,

I was using Rad Scheduler and found it to be very useful for one of my requirements.

Now, after working on it, I got stuck near inserting recurrent appointments into my database

I have a table in the database as follows...
-------------------------------
ScheduleEvents
-------------------------------
id
Description
DateFrom
DateTo
ReoccuranceID
ReoccuranceRule
ReoccuranceState
-------------------------------


Now I have dont the following in the code to bind data to the RadScheduler.
----------------------------------------------------------------------------------------------------------------

DataSet

dsForScheduler = objDataLayer.GetDataSet("select * from ScheduleEvents");

RadScheduler1.DataSource = dsForScheduler;

RadScheduler1.DataKeyField =

"id";

 

 

RadScheduler1.DataSubjectField =

"Description";

 

 

RadScheduler1.DataStartField =

"DateFrom";

 

 

RadScheduler1.DataEndField =

"DateTo";

 

 

RadScheduler1.DataRecurrenceField =

"ReoccuranceRule";

 

 

RadScheduler1.DataRecurrenceParentKeyField =

"ReoccuranceID";

 

 

RadScheduler1.MinutesPerRow = 10;

RadScheduler1.TimeLabelRowSpan = 1;

RadScheduler1.DataBind();
----------------------------------------------------------------------------------------------------------------

Now when I insert a new Appointment, I am able to insert values into the scheduler, but...
when I make it a recurrent appointment, the data goes to the database, but I find that only the one appointment which I created is shown in the scheduler, I don't have the recurrence happening.

what has to be done to achieve this...

Kindly help at the earliest possible....

 

 

1 Answer, 1 is accepted

Sort by
0
Dimitar Milushev
Telerik team
answered on 01 May 2009, 08:39 AM
Hi Natarajan,

The information you have provided is not enough to see where is the problem. Can you please open a support ticket and send us a sample project that reproduces the issue so we can determine the problem locally?

All the best,
Dimitar Milushev
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
Tags
Scheduler
Asked by
Natarajan
Top achievements
Rank 1
Answers by
Dimitar Milushev
Telerik team
Share this question
or