Apliqo UX / DatePicker Day Names Display Incorrectly

Hi,

In UX when we use datepicker, it displays days names incorrectly as below,

Even after modifying defaultconstant.js datepicker parameters, it has no effect on the UX.

Datepicker configured as below in js file:

         "datePickerConfig": {
             // First day of the week (0: Sunday, 1: Monday, etc)
             firstDay: 0,
             showWeekNumber: true,
             numberOfMonths: 2,
             disableDayFn: function(date) {
             // Disable Sunday and Saturday
                 return date.getDay() === 0 || date.getDay() === 6;
             }
         }

Regards,

Hi,

Since I’m using the json script below, it was giving that error

"datePickerConfig": {
   "firstDay": "1",
   "numberOfMonths": "3",
   "showWeekNumber": true

proper use of json should be as below;

"datePickerConfig": {
   "firstDay": 1,
   "numberOfMonths": "3",
   "showWeekNumber": true