Hi walansari,
This behavior is not because of the jqxScheduler, its is caused by the way the Date object works in JavaScript- the important thing is that the month`s starting index is 0.
Docs regarding the Date constructor: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date
This means that if you want to display the appointment in October you will have to set the date like so:
var appointments = new Array();
var appointment1 = {
id: "id1",
description: "George brings projector for presentations.",
location: "",
subject: "Quarterly Project Review Meeting",
calendar: "Room 1",
start: new Date(2021, 9, 23, 9, 0, 0),
end: new Date(2021, 9, 23, 16, 0, 0)
}
Let me know what you think!
Please, do not hesitate to contact us if you have any additional questions.
Best Regards,
Yavor Dashev
jQWidgets team
https://www.jqwidgets.com