Hi, How to put the current date as first view on the DayPilotScheduler? so for example, the start date is first day of the month, but i want the scroll start from the current day not the first of day.
Is it possible?
Thank you.
You can do it using SetScrollX() method:
protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { DayPilotScheduler1.SetScrollX(DateTime.Today); } }
thank you so much.. :D