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

[Solved] Resource rows background color

2 Answers 102 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
John John
Top achievements
Rank 1
John John asked on 23 Jan 2010, 11:13 AM
Hi

I'm testing scheduler's component for ASP and some questions.

1. Is it possible to set different styles for resource's rows, not for appointments? I'm trying to do this, but didn't succed.

2. Are there any descriptions of ALL control's  features? RAD control's documentation provides not much  information, only names, without descriptions.  :(

Best regards, John.


2 Answers, 1 is accepted

Sort by
0
Accepted
Peter
Telerik team
answered on 25 Jan 2010, 11:20 AM
Hi John,

1. Please, set the CssClass property in TimeSlotCreated.

protected void RadScheduler1_TimeSlotCreated(object sender, TimeSlotCreatedEventArgs e)
   {
       if (e.TimeSlot.Resource.Key == 1)
       {
           e.TimeSlot.CssClass = "Resource1Css";
       }
   }

Here is a kb article for reference:
http://www.telerik.com/support/kb/aspnet-ajax/scheduler/setting-special-days-or-time-slots-in-radscheduler.aspx

2. A very good way to become familiar of our controls features is to review the online demos. Also, each control has an Overview topic. For example consider:

RadScheduler overview 
or
RadScheduler overview help topic.

Feel free to contact us if you have further questions.


All the best,
Peter
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.
0
John John
Top achievements
Rank 1
answered on 25 Jan 2010, 12:01 PM
Thank you very much :)
Tags
Scheduler
Asked by
John John
Top achievements
Rank 1
Answers by
Peter
Telerik team
John John
Top achievements
Rank 1
Share this question
or