nativescript-datetimepicker icon indicating copy to clipboard operation
nativescript-datetimepicker copied to clipboard

Angular - Dynamic minDate/maxDate not working on iOS

Open dmoptimal opened this issue 4 years ago • 0 comments

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();

dmoptimal avatar Jul 01 '21 08:07 dmoptimal