Daniel Talash

Results 27 comments of Daniel Talash

I still cannot reproduce any issue. Please see this [updated plunkr.](https://plnkr.co/edit/16jlededNQGAwnP38kff?p=preview) Does it appear normal to you?

You should look into the moment [format functions](https://momentjs.com/docs/#/displaying/format/). Because `dates.minDate` is a moment object, if you need to display it in a particular format then you will need to specify...

This module expects to be provided a moment object, which will be updated as the user selects new dates. If you pass a non-moment object such as a string, then...

That's strange, as all locale related stuff is handled by moment. Try running `moment.locale();` in your console after the page loads to verify that the locale is actually set to...

I think the angular version needs to be at least 1.3, as the library is using some features of angular which were added in 1.3 - $validators are used [here](https://github.com/g00fy-/angular-datepicker/blob/master/app/scripts/input.js#L95)...

I don't have a problem when I switch the angular version to 1.4.7. [Here is a plunkr](http://embed.plnkr.co/ggL5oAvGgucDA5HCYk7K/preview) where the library works with 1.4.7. Does this plunkr work for you? Do...

This is essentially a duplicate of #196. Somebody needs to make a PR fixing the issue. Since you already forked it, you can go ahead and do so if you...

The attribute you want is `date-change`, not `data-change` (note the spelling)

Can somebody who is experiencing this problem please check if the callbacks work on the [demo page](https://rawgit.com/g00fy-/angular-datepicker/master/app/index.html)? - Open the demo page - Choose a date on one of the...

If you want to give fixing this issue a go, the function you'll want to look at is [`scope.next`](https://github.com/g00fy-/angular-datepicker/blob/1.0.17/app/scripts/datePicker.js#L181-L208). The problem is with using `setMonth` from native javascript date objects...