How to set up week start on Monday in Daterangepicker
If you want to set up week start on Monday, you need to specify the firstDay parameter during script initialization:
$("#your_input_id").daterangepicker(
{
locale: {
firstDay: 1,
}
});
Comments