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

Timeline View- resource row height

1 Answer 83 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
Eran
Top achievements
Rank 1
Eran asked on 23 Oct 2013, 08:07 AM

Hello,

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

Sort by
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:
protected void RadScheduler1_NavigationCommand(object sender, SchedulerNavigationCommandEventArgs e)
       {
           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.
Tags
Scheduler
Asked by
Eran
Top achievements
Rank 1
Answers by
Kate
Telerik team
Share this question
or