ng2-datepicker
ng2-datepicker copied to clipboard
Disabled, cant select any date
I followed the guide but its disabled, also i copied the options fr the doc. "ng2-datepicker": "^3.1.1", "@angular/animations": "6.0.0", "@angular/common": "6.0.0", "@angular/compiler": "6.0.0", "@angular/core": "6.0.0", "@angular/forms": "6.0.0", "@angular/http": "6.0.0",
Having a similar issue. Elements are overlapping as well.
@kogden @jagabs I have the same problem, Have u solved it ?
Just change the maxDate and minDate in options.
In readme you can see both of them are Date.now() and there is no any selectable date between them.
Remove minDate and maxDate from options: DatepickerOptions = {}
minDate: new Date(Date.now()), // Minimal selectable date
maxDate: new Date(Date.now()), // Maximal selectable date