fragaria / angular-daterangepicker

Angular.js wrapper for dangrossman/bootstrap-daterangepicker
MIT License
519 stars 372 forks source link

Start date question #264

Closed levipadre closed 5 years ago

levipadre commented 7 years ago

Hi,

Thank you for the directive, it's really good. Just what I was looking for. Do you know how can I set up an initial day when the year is not the current year?

So that input needs to be empty, and when I open the dropdown I only want to select a date between 2014-01-01 and 2014-12-31. I could do that when I set up, like this:

$scope.dateRange = {
    startDate: null,
    endDate: null
};

and in the template:

<input date-range-picker class="form-control date-picker" type="text" ng-model="dateRange" data-min="'2014-01-01'" data-max="'2014-12-31'" />

...but in this case the showed months are November and December instead of January.

http://plnkr.co/edit/7DhEvyXlGadQw13rFMAI