Material Datepicker check value is empty
up vote
0
down vote
favorite
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;
}
angular angular-material
add a comment |
up vote
0
down vote
favorite
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;
}
angular angular-material
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
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;
}
angular angular-material
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;
}
angular angular-material
angular angular-material
asked Apr 22 at 0:43
Sumchans
1731317
1731317
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
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.
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
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.
add a comment |
up vote
0
down vote
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.
add a comment |
up vote
0
down vote
up vote
0
down vote
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.
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.
answered Nov 11 at 2:08
Russell D
1197
1197
add a comment |
add a comment |
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f49961482%2fmaterial-datepicker-check-value-is-empty%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown