3 Answers, 1 is accepted
0
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,
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,
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
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.
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.