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.
If angular bootstrap ui version is 0.14.3, use the following
app.config(function (uibDatepickerConfig) { uibDatepickerConfig.showWeeks = false; uibDatepickerConfig.showButtonBar = false; });