Hi All,
Im trying to store the DayPilotScheduler.ViewPort.Start in a view state so that if a post back happens i can set the SetScrollX position on the page load event.
i have tried adding an onscroll event but its not firing.
protected void DayPilotScheduler1_Scroll(object sender, DayPilot.Web.Ui.Events.ScrollEventArgs e)
{
DateTime scrollDate = DayPilotScheduler1.ViewPort.Start;
ScrollPos = scrollDate;
}
Any help or ideas would be must welcome.