why keypress is not working in mat-select?
up vote
0
down vote
favorite
I want to execute function in typescript on any key pressing by user. For example, if the drop down contains values like 'Apple', 'Pineapple', 'Mango' and if user press 'M', focus should be get to the 'Mango' as per the standard HTML behaviour. Standard HTML behaviour for is : https://www.w3schools.com/tags/tryit.asp?filename=tryhtml_select
I have added (keypress) to the mat-select in html code. But it seems that keypress is not working as code in typescript function is not getting executed.
Angular version is 4.
below is the angular code:
<mat-form-field>
<mat-select (keypress)="selectKeyPress($event)" placeholder="State" formControlName = "state" required id="stateDrop">
<ng-container *ngFor = "let item of stateList">
<mat-option [value] = "item.stateId">{{item.name}}</mat-option>
</ng-container>
</mat-select>
<mat-error *ngIf="(form.controls['state'].invalid && form.controls['state'].touched)">You must select a state.</mat-error>
</mat-form-field>
angular
add a comment |
up vote
0
down vote
favorite
I want to execute function in typescript on any key pressing by user. For example, if the drop down contains values like 'Apple', 'Pineapple', 'Mango' and if user press 'M', focus should be get to the 'Mango' as per the standard HTML behaviour. Standard HTML behaviour for is : https://www.w3schools.com/tags/tryit.asp?filename=tryhtml_select
I have added (keypress) to the mat-select in html code. But it seems that keypress is not working as code in typescript function is not getting executed.
Angular version is 4.
below is the angular code:
<mat-form-field>
<mat-select (keypress)="selectKeyPress($event)" placeholder="State" formControlName = "state" required id="stateDrop">
<ng-container *ngFor = "let item of stateList">
<mat-option [value] = "item.stateId">{{item.name}}</mat-option>
</ng-container>
</mat-select>
<mat-error *ngIf="(form.controls['state'].invalid && form.controls['state'].touched)">You must select a state.</mat-error>
</mat-form-field>
angular
Could you provide please a stackblitz, coz it seems working for me.
– selem mn
2 days ago
The default example is working. Please provide a Minimal, Complete, and Verifiable example reproducing the issue.
– trichetriche
2 days ago
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I want to execute function in typescript on any key pressing by user. For example, if the drop down contains values like 'Apple', 'Pineapple', 'Mango' and if user press 'M', focus should be get to the 'Mango' as per the standard HTML behaviour. Standard HTML behaviour for is : https://www.w3schools.com/tags/tryit.asp?filename=tryhtml_select
I have added (keypress) to the mat-select in html code. But it seems that keypress is not working as code in typescript function is not getting executed.
Angular version is 4.
below is the angular code:
<mat-form-field>
<mat-select (keypress)="selectKeyPress($event)" placeholder="State" formControlName = "state" required id="stateDrop">
<ng-container *ngFor = "let item of stateList">
<mat-option [value] = "item.stateId">{{item.name}}</mat-option>
</ng-container>
</mat-select>
<mat-error *ngIf="(form.controls['state'].invalid && form.controls['state'].touched)">You must select a state.</mat-error>
</mat-form-field>
angular
I want to execute function in typescript on any key pressing by user. For example, if the drop down contains values like 'Apple', 'Pineapple', 'Mango' and if user press 'M', focus should be get to the 'Mango' as per the standard HTML behaviour. Standard HTML behaviour for is : https://www.w3schools.com/tags/tryit.asp?filename=tryhtml_select
I have added (keypress) to the mat-select in html code. But it seems that keypress is not working as code in typescript function is not getting executed.
Angular version is 4.
below is the angular code:
<mat-form-field>
<mat-select (keypress)="selectKeyPress($event)" placeholder="State" formControlName = "state" required id="stateDrop">
<ng-container *ngFor = "let item of stateList">
<mat-option [value] = "item.stateId">{{item.name}}</mat-option>
</ng-container>
</mat-select>
<mat-error *ngIf="(form.controls['state'].invalid && form.controls['state'].touched)">You must select a state.</mat-error>
</mat-form-field>
angular
angular
edited 2 days ago
Ebin Manuval
664722
664722
asked 2 days ago
Ambar Dudhane
24
24
Could you provide please a stackblitz, coz it seems working for me.
– selem mn
2 days ago
The default example is working. Please provide a Minimal, Complete, and Verifiable example reproducing the issue.
– trichetriche
2 days ago
add a comment |
Could you provide please a stackblitz, coz it seems working for me.
– selem mn
2 days ago
The default example is working. Please provide a Minimal, Complete, and Verifiable example reproducing the issue.
– trichetriche
2 days ago
Could you provide please a stackblitz, coz it seems working for me.
– selem mn
2 days ago
Could you provide please a stackblitz, coz it seems working for me.
– selem mn
2 days ago
The default example is working. Please provide a Minimal, Complete, and Verifiable example reproducing the issue.
– trichetriche
2 days ago
The default example is working. Please provide a Minimal, Complete, and Verifiable example reproducing the issue.
– trichetriche
2 days ago
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
I had searched on your question but better thing is founded to used autocomplete.
https://material.angular.io/components/autocomplete/overview
reference link : Using keyboard to select items in md-select
1
md
prefixed components are deprecated dude, that would be better a comment than an answer :)
– selem mn
2 days ago
@selemmn i had given link not exact solution
– Pradip
2 days ago
@Pradip more reason to be a comment then.
– trichetriche
2 days ago
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
I had searched on your question but better thing is founded to used autocomplete.
https://material.angular.io/components/autocomplete/overview
reference link : Using keyboard to select items in md-select
1
md
prefixed components are deprecated dude, that would be better a comment than an answer :)
– selem mn
2 days ago
@selemmn i had given link not exact solution
– Pradip
2 days ago
@Pradip more reason to be a comment then.
– trichetriche
2 days ago
add a comment |
up vote
0
down vote
I had searched on your question but better thing is founded to used autocomplete.
https://material.angular.io/components/autocomplete/overview
reference link : Using keyboard to select items in md-select
1
md
prefixed components are deprecated dude, that would be better a comment than an answer :)
– selem mn
2 days ago
@selemmn i had given link not exact solution
– Pradip
2 days ago
@Pradip more reason to be a comment then.
– trichetriche
2 days ago
add a comment |
up vote
0
down vote
up vote
0
down vote
I had searched on your question but better thing is founded to used autocomplete.
https://material.angular.io/components/autocomplete/overview
reference link : Using keyboard to select items in md-select
I had searched on your question but better thing is founded to used autocomplete.
https://material.angular.io/components/autocomplete/overview
reference link : Using keyboard to select items in md-select
answered 2 days ago
Pradip
2081310
2081310
1
md
prefixed components are deprecated dude, that would be better a comment than an answer :)
– selem mn
2 days ago
@selemmn i had given link not exact solution
– Pradip
2 days ago
@Pradip more reason to be a comment then.
– trichetriche
2 days ago
add a comment |
1
md
prefixed components are deprecated dude, that would be better a comment than an answer :)
– selem mn
2 days ago
@selemmn i had given link not exact solution
– Pradip
2 days ago
@Pradip more reason to be a comment then.
– trichetriche
2 days ago
1
1
md
prefixed components are deprecated dude, that would be better a comment than an answer :)– selem mn
2 days ago
md
prefixed components are deprecated dude, that would be better a comment than an answer :)– selem mn
2 days ago
@selemmn i had given link not exact solution
– Pradip
2 days ago
@selemmn i had given link not exact solution
– Pradip
2 days ago
@Pradip more reason to be a comment then.
– trichetriche
2 days ago
@Pradip more reason to be a comment then.
– trichetriche
2 days ago
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%2f53410260%2fwhy-keypress-is-not-working-in-mat-select%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
Could you provide please a stackblitz, coz it seems working for me.
– selem mn
2 days ago
The default example is working. Please provide a Minimal, Complete, and Verifiable example reproducing the issue.
– trichetriche
2 days ago