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

how to insert a row like "all day row" in rad scheduler

5 Answers 118 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
BUI
Top achievements
Rank 1
BUI asked on 20 Apr 2009, 12:37 PM
hello everybody
can i insert a row like "all day row" in this exemple
http://demos.telerik.com/aspnet-ajax/scheduler/examples/webservice/defaultcs.aspx.
sorry for my english. :D
thanks!

5 Answers, 1 is accepted

Sort by
0
BUI
Top achievements
Rank 1
answered on 20 Apr 2009, 01:21 PM
please help me . i want to add a row like "all day row" in  the column hours.thanks
0
Peter
Telerik team
answered on 20 Apr 2009, 01:59 PM
Hello BUI,

There is already an all day row in this example. The hours panel cannot be altered to add extra rows to it if that's what you mean.

Regards,
Peter
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
0
BUI
Top achievements
Rank 1
answered on 20 Apr 2009, 04:09 PM
thanks a lot.
0
Prithvi
Top achievements
Rank 1
answered on 28 Sep 2012, 12:32 PM
Hi,

 I am Facing a problem , when we r using Rad scheduler control. I want use check box control on Header of  the cell of MonthView . How can i use ...Pls help me its urgent..

Thanks & Regard
Prithvi
0
Princy
Top achievements
Rank 2
answered on 03 Oct 2012, 06:11 AM
Hi Prithvi,

I suppose you want to add a CheckBox to the timeslots of the RadScheduler when the SelectedView is MonthView. Try the following code snippet.

C#:
protected void RadScheduler1_TimeSlotCreated(object sender, TimeSlotCreatedEventArgs e)
    {
        if (RadScheduler1.SelectedView == SchedulerViewType.MonthView)
        {
            CheckBox chk = new CheckBox();
            chk.ID = "chk";
            e.TimeSlot.Control.Controls.AddAt(0, chk);
        }
    }

Please elaborate your scenario if it doesn't helps.

Regards,
Princy.
Tags
Scheduler
Asked by
BUI
Top achievements
Rank 1
Answers by
BUI
Top achievements
Rank 1
Peter
Telerik team
Prithvi
Top achievements
Rank 1
Princy
Top achievements
Rank 2
Share this question
or