I want the radscheduler to show specified date appointments instead of todays date. I was doing that like this in page_load event.
If
Not IsPostBack Then
sDate = DateTime.Parse(Request.QueryString("sDate").ToString())
RadScheduler1.DataSource = CreateDataTable()
RadScheduler1.SelectedDate = sDate
End If
But the problem is with rendering of time headers on the lefthand side of the scheduler. I am seeing the incorrect time header on the scheduler. Not sure whats wrong i am doing