Hi,
It seems disabledDates is not working at all:
HTML FILE:
<span ion-datepicker (ionChanged)="setDate($event);"
[max]="maxDate" [min]="initDate"
[value]="initDate"
[showMaxAndMin]="true"
[disabledDates]="disabledDates" clear class="ScheduleDate">
TS file:
public disabledDates: Date[] = [new Date(2018,1,28)];
Hi, It seems disabledDates is not working at all: HTML FILE:
<span ion-datepicker (ionChanged)="setDate($event);" [max]="maxDate" [min]="initDate" [value]="initDate" [showMaxAndMin]="true" [disabledDates]="disabledDates" clear class="ScheduleDate">
TS file:public disabledDates: Date[] = [new Date(2018,1,28)];
Any fix?
Using this: https://github.com/pauloedsr/ionic3-datepicker
Thanks!