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

[Solved] RadScheduler RowHeight and TimelineView

1 Answer 383 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
Ban
Top achievements
Rank 1
Ban asked on 24 Aug 2009, 12:40 PM
Hi,

Please I have 2 problems I can not solve in RadScheduler:
1- I can not manage the Row Height of the Cell in Monthly View, I try all the ways by change the RowHeight Property or by CSS and no effect, it is still the same and can not resize it.
2- In the TimelineView I have GroupingDirection="Vertical"  and I have many entry but if there is any appointment on one of the rows it look very wide in height and shift the rows down so every thing is shifted too and the Time Lines will not be corresponded to the Headers !

so PLEASE help me and tell me what is the problem.

* check this picture for the TimeLineView Problem on this link "http://www.mypicx.com/uploadimg/1747555670_08242009_1.jpg"

Thanks
Ban Shareef

1 Answer, 1 is accepted

Sort by
0
Peter
Telerik team
answered on 25 Aug 2009, 01:05 PM
Hello Ban,

If you need to set RowHeight just for Month view, please set it dynamically like this:
 protected void Page_Load(object sender, EventArgs e)  
    {  
        if (RadScheduler1.SelectedView == SchedulerViewType.MonthView)          
            RadScheduler1.RowHeight = Unit.Pixel(40);          
        else 
            RadScheduler1.RowHeight = Unit.Pixel(25);  
    }  
    protected void RadScheduler1_NavigationComplete(object sender, SchedulerNavigationCompleteEventArgs e)  
    {  
        if (RadScheduler1.SelectedView == SchedulerViewType.MonthView)         
            RadScheduler1.RowHeight = Unit.Pixel(40);         
        else 
            RadScheduler1.RowHeight = Unit.Pixel(25);  
    } 

As for the other problem, it should be fixed with the current official version - 2009.2.701. Please, upgrade and let us know how it goes.

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