I have this datepicker -> http://jsfiddle.net/maralik/zbf4q8Ld/1/
And when I select a date I'm getting bad date. Where is a problem? There is nothing else, just the datepicker and I still get bad dates
app = angular.module 'myapp', ['ng-bootstrap-datepicker']
AppCtrl = ($scope)->
$scope.datepickerOptions =
format: 'yyyy-mm-dd'
language: 'cs'
autoclose: true
weekStart: 0
$scope.date = '2015-06-22'
app.controller 'AppCtrl', AppCtrl
angular.bootstrap document, ['myapp']
What I'm getting you can see here -> https://drive.google.com/file/d/0Bzc9ZSGdiL-teGtsMkhLSGU0R3c/view?usp=sharing
Any idea? It would really help me a lot
Thanks!
David
That's really odd. I tried many different options on your example and still not working as it should. Maybe you should try 'ui.bootstrap'. It also has datepicker and it works properly. Here's an example. jsfiddle