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

How to get RadCalendar MultiView to navigate ONE MONTH ONLY

1 Answer 67 Views
Calendar
This is a migrated thread and some comments may be shown as answers.
Simone
Top achievements
Rank 1
Simone asked on 12 May 2011, 02:55 PM
I have a RadCalendar set with
MultiViewColumns="4" 
MultiViewRows="3"

When I click on SLOW Navigation button,  I do not want to move the view by an entire year.

I want to only move ONE month back or forward.

How can I do that?

Thanks.

1 Answer, 1 is accepted

Sort by
0
Simone
Top achievements
Rank 1
answered on 12 May 2011, 03:40 PM
Never mind. I solved my problem by using a RadScheduler, and setting the FocusedDate, and it worked.

        protected void RadScheduler1_NavigationComplete(object sender, SchedulerNavigationCompleteEventArgs e)
        {
            RadCalendar1.FocusedDate = RadScheduler1.SelectedDate;
        }
Tags
Calendar
Asked by
Simone
Top achievements
Rank 1
Answers by
Simone
Top achievements
Rank 1
Share this question
or