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

Scheduler "More" link to go to Agenda instead of Day View

1 Answer 23 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
Moon
Top achievements
Rank 2
Moon asked on 07 May 2014, 07:43 PM
Can I set the monthly "more" link to go to the Agenda view instead of the Day view?

How? thanks!

1 Answer, 1 is accepted

Sort by
0
Plamen
Telerik team
answered on 09 May 2014, 08:35 AM
Hello,

One way to achieve this is by using the NavigationComplete server event as for example in the code below:

Protected Sub RadScheduler1_NavigationComplete(sender As Object, e As SchedulerNavigationCompleteEventArgs)

    Dim scheduler As RadScheduler = DirectCast(sender, RadScheduler)

 

    If e.Command = SchedulerNavigationCommand.SwitchToSelectedDay Then

        scheduler.SelectedView = SchedulerViewType.AgendaView

    End If

End Sub


Hope this will be helpful.

Regards,
Plamen
Telerik
 

Check out the Telerik Platform - the only platform that combines a rich set of UI tools with powerful cloud services to develop web, hybrid and native mobile apps.

 
Tags
Scheduler
Asked by
Moon
Top achievements
Rank 2
Answers by
Plamen
Telerik team
Share this question
or