Hello,
I am trying to do find a way to change the active day of myDayView (move it to the next day or previous day) when user clicks a button. I have been playing around with myDayView.CalendarInfo.ActiveDay but not able to change its date by any members available. Please comment if you know any ways to accomplish it. May be I am missing a basic thing, I don't know. Thanks.
this.ultraCalendarInfo.ActiveDay = this.ultraCalendarInfo.GetDay( DateTime.Parse("01/18/2008"), true );
hi,
i also have the same problem in changing the active day.
I am assigning a day to Ultracalendarinfo.activeday property like this in a button click event.
ultraCalendarInfo1.ActiveDay =
ultraCalendarInfo1.GetDay(dtpDate.DateTime, true); //dtpdate is my date time control.
ultraCalendarInfo1.ActiveDay.Selected = true;
but the activeday is not refreshing at the first click of the button. in the second click,
the active day is refreshing.
Please tell me if any code needs to be added for refreshing the activeday.
Thanks in advance.
Murthy.