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

Questions Regarding Scheduler

1 Answer 47 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
Chamira
Top achievements
Rank 1
Chamira asked on 24 Jun 2008, 05:09 AM
Can some one please tell me how to have different colored appointments.. ( i saw some articles about css but its confusing to me )

and is it possible to add a new appointment through code..

coz my requirement is to add a new goal which spans about 6 month and note down the activities under it..

this is wat im trying to mimic.. can the schedular do this.. ? its really really urgent...

http://img175.imageshack.us/img175/1062/calendardd6.jpg

thank you

1 Answer, 1 is accepted

Sort by
0
Accepted
T. Tsonev
Telerik team
answered on 24 Jun 2008, 02:27 PM
Hello Chamira,

If you only need to change the background color of the appointments, you can do this entirely from the code behind. You can handle the AppointmentDataBound event to do this. For example:

protected void RadScheduler1_AppointmentDataBound(object sender, SchedulerEventArgs e) 
    e.Appointment.BackColor = Color.Silver; 

I hope this helps.

Sincerely yours,
Tsvetomir Tsonev
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center
Tags
Scheduler
Asked by
Chamira
Top achievements
Rank 1
Answers by
T. Tsonev
Telerik team
Share this question
or