NativeScript / nativescript-datetimepicker

Plugin with date and time picking fields
Apache License 2.0
27 stars 26 forks source link

Angular - Dynamic minDate/maxDate not working on iOS #88

Open dmoptimal opened 3 years ago

dmoptimal commented 3 years ago

Tns version 7.2.1 Angular version 8.2.0

In component: public minDate = moment().format('YYYY/MM/DD'); In html: <DatePickerField [minDate]="minDate"> </DatePickerField> I've also tried the following: <DatePickerField minDate="{{minDate}}"> </DatePickerField>

The demo works, but is not dynamic: <DatePickerField minDate="2021/06/01"> </DatePickerField>

I'm sure I'm doing something wrong, but not sure what I'm missing!

Note: I've also tried the following (but I assumed minDate accepted a string in the format: YYYY/MM/DD so I thought this wouldn't work anyway) public minDate = moment().toDate();