Sumchans
Sumchans

Reputation: 3784

Material Datepicker check value is empty

I have the material datepicker inside mat-radio-group as one of the options. When the user selects the FFM radio button the datepicker control opens and the user selects the date, but if the user selects the FFM option and not select a date from the datepicker dialog instead clicks somewhere else on the screen then the datepicker input control has no value on it but internally the datechange events assigns the current date. I tried the ngModel option as per this post 44356173, but it didn't work. What I am trying to do is, check if the user selected a date from the datepicker dialog or not, if not the form should not be valid.

<mat-radio-group formControlName="installStatus" [(ngModel)]="installStatus">
    <mat-radio-button value="8555">8555 - Delay Crew</mat-radio-button>
    <mat-radio-button value="9000">9000 - Self Install</mat-radio-button>
    <mat-radio-button value="FFM" (click)="datePicker.open()">
        <mat-input-container>
            <input [(ngModel)]="date" matInput [matDatepicker]="datePicker" placeholder="FFM">
            <mat-datepicker #datePicker></mat-datepicker>
        </mat-input-container>
    </mat-radio-button>
</mat-radio-group>

export class AddsaleComponent implements OnInit {
  date: any;
}

Upvotes: 1

Views: 1171

Answers (1)

Russell D
Russell D

Reputation: 346

Wow, this is an older question. Based on the post you listed in your question, it looks like you could add a (dateChange) event and you would know the user selected a date in the datepicker dialog.

Upvotes: 0

Related Questions