I am using angular-ui bootstrap datepicker. Now I need to remove #(week) column and week button from datepicker. This date picker is being used in many forms of my application.
To hide the weeks number you can use two different way.
First one: adding into controller
$scope.dateOptions = { 'year-format': "'yy'", 'starting-day': 1 };
or Second way: add attribute in input field
show-weeks="'false'"