How can I select a date in the Month or WeekView and change to DayView and have it display that day?
I have tried setting the date in the viewchange but does not seem to work.
Any assistance would be appreciated.
You could bind to “cellClick” event of the jqxScheduler and you could get from its arguments current date.
When you are in ‘weekView’ or ‘monthView’ you could switch to ‘dayView’ with the desired day on that way:
$("#scheduler").jqxScheduler({
view: 'dayView',
date: new $.jqx.date(2017, 11, 25)
});
I am binding to the cell click to get the SELECTED date with no problem.
IF the user want to now switch to DayView I was trying to set the date selected above in the viewchange event.
This did not seem to work.