Datepicker Angularjs startWeek on Monday -
i've problem angular md-datepicker. it's start default on sunday, need start on monday.
i've been tried add option controller, doesn't work. can me please?
this code:
 $scope.dateoptions = {   formatyear: 'yy',   showweeks: false,         firstdayofweek  : 1 }; <md-datepicker ng-model="desdedate" md-placeholder="enter date" options="dateoptions"></md-datepicker> 
use following code configure first day of week in md-date
 angular.module('myapp').controller('appctrl', function($scope) {   $scope.mydate = new date();   }).config(function($mddatelocaleprovider) {    // can change week display start on monday.   $mddatelocaleprovider.firstdayofweek = 1;   // optional.    }); below link working example.
you need change start day of week using $mddatelocaleprovider.
Comments
Post a Comment