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

[Solved] RadScheduler Month View - Vertical Scrollbars

3 Answers 256 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
Tania
Top achievements
Rank 1
Tania asked on 08 Feb 2008, 06:42 PM
How do I remove the vertical scrollbar from the monthly view of the radscheduler? Thanks for your help.

3 Answers, 1 is accepted

Sort by
0
Peter
Telerik team
answered on 11 Feb 2008, 04:07 PM

Hi Tania,

You can remove the vertical scrollbar by setting OverflowBehavior = "Expand" for RadScheduler. If you want this behavior only for Month View, you can use the following approach:

protected void RadScheduler1_NavigationComplete(object sender, SchedulerNavigationCompleteEventArgs e)  
    {  
        RadScheduler scheduler1 = (RadScheduler)sender;  
        if (e.Command == SchedulerNavigationCommand.SwitchToMonthView)  
        {  
            scheduler1.OverflowBehavior = OverflowBehavior.Expand;  
        }  
        else 
        {  
            scheduler1.OverflowBehavior = OverflowBehavior.Scroll;  
        }  
    } 


Kind regards,

Peter
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center
0
Mario
Top achievements
Rank 1
answered on 07 Aug 2009, 06:31 PM
Hello Guys,

i get funny behavior after applying the code above, the scroll bars do dissapear but along with it all text inside the calendar dissapears too, and when I mouse over the calendar, the text starts to appear and along with it the scrollbars, let me know if theres a way to send you a screenshot

Thanks for you support

Regards,

0
Veselin Vasilev
Telerik team
answered on 10 Aug 2009, 10:27 AM
Hello Mario,

To send us a screenshot you need to open a support ticket. Alternatively, you can capture a short video using Jing and upload it to Screencast.com


Sincerely yours,
Veselin Vasilev
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
Tania
Top achievements
Rank 1
Answers by
Peter
Telerik team
Mario
Top achievements
Rank 1
Veselin Vasilev
Telerik team
Share this question
or