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 was archived by the owner on Sep 5, 2024. It is now read-only.
app.config(function($mdDateLocaleProvider){// Can change week display to start on Monday.$mdDateLocaleProvider.firstDayOfWeek=1;$mdDateLocaleProvider.parseDate=function(dateString){varm=moment(dateString,'DD.MM.YYYY',true);returnm.isValid() ? m.toDate() : newDate(NaN);};$mdDateLocaleProvider.formatDate=function(date){returnmoment(date).format('DD.MM.YYYY');};$mdDateLocaleProvider.weekNumberFormatter=function(weekNumber){return'Week'+weekNumber;};});
Now I can see the weekNumber variable is working on my console. But how can I display it inside the calendar? I couldn't find an option for this on the doc.