5 Answers, 1 is accepted
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
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.
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
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#:
Please elaborate your scenario if it doesn't helps.
Regards,
Princy.
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.