4 Answers, 1 is accepted
0
Accepted
Hi TROY,
Please, try the following:
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.
Please, try the following:
| protected void RadScheduler1_NavigationCommand(object sender, SchedulerNavigationCommandEventArgs e) |
| { |
| if (e.Command == SchedulerNavigationCommand.SwitchToSelectedDay) |
| { |
| e.Cancel = true; |
| RadScheduler1.SelectedDate = e.SelectedDay; |
| RadScheduler1.SelectedView = SchedulerViewType.TimelineView; |
| } |
| } |
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.
0
Troy
Top achievements
Rank 1
answered on 11 Jun 2009, 02:14 PM
Thanks, that worked. And is there an easy to to distinguish a selected day in the month view. LIke, I have it selecting the current date on load, but its not highlighted or anything.
0
Accepted
Hello TROY,
Please, check if you can use this kb article:
http://www.telerik.com/support/kb/aspnet-ajax/scheduler/setting-special-days-or-time-slots-in-radscheduler.aspx
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.
Please, check if you can use this kb article:
http://www.telerik.com/support/kb/aspnet-ajax/scheduler/setting-special-days-or-time-slots-in-radscheduler.aspx
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.
0
Troy
Top achievements
Rank 1
answered on 11 Jun 2009, 03:19 PM
Thank you for the quick response. Worked great.