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

Hide "Day View"

1 Answer 88 Views
Scheduler and Reminder
This is a migrated thread and some comments may be shown as answers.
Daniel Tipismana
Top achievements
Rank 1
Daniel Tipismana asked on 09 Nov 2009, 02:35 AM
Hi, i'm trying to hide the "Day View" tab in the SchedulerNavigator, is it posible?

Thank you anyway

1 Answer, 1 is accepted

Sort by
0
Deyan
Telerik team
answered on 09 Nov 2009, 08:28 AM
Hello Daniel,

Thanks for contacting us.

You can easily hide the Day View button by setting its Visibility property to Collapsed. You should also make sure that the view in RadScheduler is changed to a view different from Day View. The code snippet below should help you:

public Form1()
{
     InitializeComponent();
     this.radSchedulerNavigator1.DayViewButton.Visibility = ElementVisibility.Collapsed;
     this.radScheduler1.ActiveView = new SchedulerWeekView();
}
 
Do not hesitate to write back if you need further assistance.

All the best,
Deyan
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
Tags
Scheduler and Reminder
Asked by
Daniel Tipismana
Top achievements
Rank 1
Answers by
Deyan
Telerik team
Share this question
or