Hi Sinisa,
Sample: https://stackblitz.com/edit/ej2-js-schedule-first-day-of-week-sample?file=index.js
In your shared sample you have used the firstyDayOfWeek
property value as a string which is causing your reported problem while opening
the editor window. The firstyDayOfWeek property accepts the value in the
number type. So, you need to provide the value as a number type as highlighted
in the below code snippet.
[index.js]
var scheduleObj = new ej.schedule.Schedule({
firstDayOfWeek: 1,
});
|
Regards,
Ravikumar Venkatesan