I am trying to use this calendar to select days of months.

<div style="display:inline-block; min-height:290px;"> <uib-datepicker year-range="0" show-weeks="false" max-mode="month" ng-model="dt" min-date="minDate" class="well well-sm" custom-class="getDayClass(date, mode)"></uib-datepicker> </div>

I want to make the year disappear completely, making the calendar show the days of the months only. Also I have disabled the "show-weeks" option because for a "generic" year there are no fixed numbered weeks (their number depends on the year).

I have tried to play with the max-mode option, making it "month" but without success.

I wanted it to be like this:

and make it loop around if I reach December and press the "next" button, on in January if I press the "previous" button.

Another thing I would need was to make it able to select multiple days.

This calendar will be used to select birthdays, so since everyone has birthdays every year, it makes no sense to show the year in the calendar. In the end I just need to collect the list of day/month pairs.

Thanks!