I have a problem with angular md-datepicker. It starts by default on Sunday, but I need to start on Monday.
I tried to add a parameter to the controller, but it does not work. Can anybody help me?
This is the code:
$scope.dateOptions = { formatYear: 'yy', showWeeks: false, firstDayOfWeek : 1 }; <md-datepicker ng-model="desdeDate" md-placeholder="Enter date" options="dateOptions"></md-datepicker>
source share