You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When date is picked in popup value in edit box is greater by one day. I am in UTC +1 time zone (CET) and I am pretty sure that his UTC calculations are the problem, so I changed:
targetDate.obj.getUTCDate(),
to
targetDate.obj.getDate(),
on line 1210 in picker.date.js to make it work, but not sure is that a right thing to do, it works now for CET. Please comment
The text was updated successfully, but these errors were encountered:
When date is picked in popup value in edit box is greater by one day. I am in UTC +1 time zone (CET) and I am pretty sure that his UTC calculations are the problem, so I changed:
targetDate.obj.getUTCDate(),
to
targetDate.obj.getDate(),
on line 1210 in picker.date.js to make it work, but not sure is that a right thing to do, it works now for CET. Please comment
The text was updated successfully, but these errors were encountered: