Angular Datepicker gives bad dates

144 Views Asked by At

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

1

There are 1 best solutions below

1
On

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

var app = angular.module('myapp', ['ui.bootstrap'])
app.controller('AppCtrl', function($scope) {
  $scope.opened = true;
  $scope.openStartDatepicker = function($event) {
    $event.preventDefault();
    $event.stopPropagation();
    $scope.opened = true;
  };

  $scope.dateOptions = {
    startingDay: 1
  };
});
angular.bootstrap(document, ['myapp']);