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
{{ message }}
This repository has been archived by the owner on Sep 12, 2024. It is now read-only.
I'm using the following configuration for my daterangepicker:
$(".daterangepicker-field").daterangepicker({ startDate:moment(), endDate:moment(), timeZone:'Europe/Bucharest', forceUpdate: true, orientation:'left', ranges:{}, periods: ['day','week','month','year'], expanded:true, firstDayOfWeek: 0, minDate:'2019-01-01', callback: function(startDate, endDate, period){ var title = startDate.format('MMM D, YYYY') + ' – ' + endDate.format('MMM D, YYYY'); $(this).val(title); } });
I want to change the week starting date from sunday to monday, but the calendar won't change. How can I solve this?
Thank you in advance!
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hi guys!
I'm using the following configuration for my daterangepicker:
$(".daterangepicker-field").daterangepicker({ startDate:moment(), endDate:moment(), timeZone:'Europe/Bucharest', forceUpdate: true, orientation:'left', ranges:{}, periods: ['day','week','month','year'], expanded:true, firstDayOfWeek: 0, minDate:'2019-01-01', callback: function(startDate, endDate, period){ var title = startDate.format('MMM D, YYYY') + ' – ' + endDate.format('MMM D, YYYY'); $(this).val(title); } });
I want to change the week starting date from sunday to monday, but the calendar won't change. How can I solve this?
Thank you in advance!
The text was updated successfully, but these errors were encountered: