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

Recurrence Forecolor and Per Minute appointments

1 Answer 16 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
Peter
Top achievements
Rank 1
Peter asked on 18 Nov 2012, 12:22 PM
I am setting the Forecolor of a New Appointment() object, and then applying a recurrencerule.  Only the first event in the range has the Forecolor.  The rest have reverted to white.

Dim da As New Appointment()
...
da.ForeColor = Drawing.Color.Red
...
dim DailyRR As New DailyRecurrenceRule(1, range)
da.End = da.Start.AddMinutes(1)
da.RecurrenceRule = DailyRR.ToString()
RadCal.InsertAppointment(da)

I want all occurrences of this event to have the same ForeColor.  (I also tried BorderColor and BackColor, they are lost as well)

********************************************************************************************

Your recurrence engine is missing a MinutelyRecurrenceRule.  It would very helpful.  Is there some place I can vote on this feature?  I have a handful of events that are 10 and 15 minute increments, if I try to manually add them in a loop, the performance degrades significantly.   

1 Answer, 1 is accepted

Sort by
0
Plamen
Telerik team
answered on 22 Nov 2012, 10:13 AM
Hi Peter,

 
You can color the appointments in the AppointmentDataBound event as it is done in this on-line demo.

As for the MinutelyRecurrenceRule -thank you for sharing this feature request and for your concern with RadControls -we will consider it for the future versions of our control.


All the best,
Plamen
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now.
Tags
Scheduler
Asked by
Peter
Top achievements
Rank 1
Answers by
Plamen
Telerik team
Share this question
or