Hello,
I would like to reset the calendar of the RadCalendar to a different month after page postback. Is it possible to do? By default the RadCalendar reset the Calendar to the current calendar month.
I would like to reset the calendar of the RadCalendar to a different month after page postback. Is it possible to do? By default the RadCalendar reset the Calendar to the current calendar month.
I tried setting the CurrentViewBeginDate and CurrentViewEndDate properties. But it didn't work and i always see the RadCalendar reset to current calendar month.
RadCalendar1.CalendarView.CurrentViewBeginDate = (
DateTime)ViewState["RadCStartDate"];
if(ViewState["RadCEndDate"] != null)
RadCalendar1.CalendarView.CurrentViewEndDate = (
DateTime)ViewState["RadCEndDate"];
Any feedback will be appreciated.
Thanks
Padma