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....