Hello there!
I want to do this Web App, I have a page with a WebMonthView and a WebScheduleInfo, on the OnLoad event I want to load all the appoinments of a specific month and year which I get thru QueryString parameters. I'm able to load the appoinments OK but the WebMonthView always display the current month view, I mean the DateTime.Now date related month. I would like the WebMonthView to display the month and year I'm getting thru QueryString parameters, I think that changing the ActiveDay on WebScheduleInfo will do that but I haven't found a way of do it on runtime (on code)
Please can anybody help me?
Geykel
You need to set the ActiveDayUtc like this...
WebScheduleInfo1.ActiveDayUtc = new Infragistics.WebUI.Shared.SmartDate("qsDateTime");
Where "qsDateTime" is the date you want the calendar to start with.
WebScheduleInfo1.ActiveDayUtc = newInfragistics.WebUI.Shared.SmartDate("qsDateTime"); Is not working.