I am using the scheduler in timeline view, with resource displayed vertically.
In ie8, the resource cell height is different than the schedule cells height. Please see the attached image.
I am using version 2013.3.1015.40
Please advise, thank you!
1 Answer, 1 is accepted
0
Kate
Telerik team
answered on 25 Oct 2013, 10:23 AM
Hi Eran,
To alter the height of the appointments I would suggest that you use the RowHeight property of the RadScheduler control and set it to the desired height when you switch to TimeLineView only. For example you can try out the following code:
if (e.Command == SchedulerNavigationCommand.SwitchToTimelineView)
{
RadScheduler1.RowHeight = 50;
}
else
{
RadScheduler1.RowHeight = 20;
}
}
Regards,
Kate
Telerik
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to the blog feed now.