You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have this Issues
<ngx-timepicker-field [format]="24" [controlOnly]="true" [ngModel]="formatTime(stopDate)" [min] ="formatTime(startDate)" (ngModelChange)="onStopDateChange($event)" name="stopDate" required style="color: white !important;">
When I put the [min] validation like this ( [min] ="formatTime(startDate)" ) the hour arrows turn blocked if, although, the camp is not on the min value.
I have this Issues
<ngx-timepicker-field [format]="24" [controlOnly]="true" [ngModel]="formatTime(stopDate)" [min] ="formatTime(startDate)" (ngModelChange)="onStopDateChange($event)" name="stopDate" required style="color: white !important;">
When I put the [min] validation like this ( [min] ="formatTime(startDate)" ) the hour arrows turn blocked if, although, the camp is not on the min value.
formatTime function:
formatTime(date: Date): string
{
if (!date || !(date instanceof Date)) {
return '';
}
}
The text was updated successfully, but these errors were encountered: