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

[Solved] span more than 1 room

1 Answer 65 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
John
Top achievements
Rank 1
John asked on 22 Sep 2009, 02:56 PM
Hi - I have a scheduler with multiple rooms defined - some of my 'talks' are just in 1 room but I need to define things such as 'breakfast' that span all rooms - is this possible?

Thanks

1 Answer, 1 is accepted

Sort by
0
Peter
Telerik team
answered on 24 Sep 2009, 01:33 PM
Hi John,

You can add a label to specific Time Slots. For example:
 protected void RadScheduler1_TimeSlotCreated(object sender, Telerik.Web.UI.TimeSlotCreatedEventArgs e)  
    {  
        if (e.TimeSlot.Start.Hour == 8 & e.TimeSlot.Start.Minute == 0)  
        {  
            Literal breakfastLabel = new Literal();  
            breakfastLabel.Text = "Breakfast";  
            e.TimeSlot.Control.Controls.Add(breakfastLabel);  
        }  
    } 

You can also add different style as shown in this kb article:
http://www.telerik.com/support/kb/aspnet-ajax/scheduler/setting-special-days-or-time-slots-in-radscheduler.aspx


Greetings,
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.
Tags
Scheduler
Asked by
John
Top achievements
Rank 1
Answers by
Peter
Telerik team
Share this question
or