filtering list and auto set last value of filtered listHow to apply filters to *ngFor?Angular - Set headers for every requestngFor with index as value in attributeHow to go back last pagehow to set value in array form with angularSuggestion List with Angular 5Placeholder in mat-autoComplete does not work as illustrated in the Angular Material Documentationmat autocomplete for a non-async dataHow to convert filtered autocomplete textbox from Angular templated form to Angular reactive form without ngModelIonic 3- Possible to trigger an IonChange event from component?
Consonance v. Dissonance
Is there any benefit to riders on the front of a paceline?
Can I fix my boots by gluing the soles back on?
Telling my mother that I have anorexia without panicking her
Make 2019 with single digits
Read string of any length in C
How to control the output voltage of a solid state relay
How are aircraft depainted?
Python web-scraper to download table of transistor counts from Wikipedia
Would it be unbalanced to increase Wild Shape uses based on level?
Parallel resistance in electric circuits
What was the motivation for the invention of electric pianos?
Is there a tool to measure the "maturity" of a code in Git?
What does "boys rule, girls drool" mean?
Ethernet, Wifi and a little human psychology
Bit one of the Intel 8080's Flags register
Add text inside circuit component in circuitikz environment
New default file type?
What 68-pin connector is this on my 2.5" solid state drive?
Can I see Harvest moon in India?
What are these things that surround museum exhibits called?
Which is the current decimal separator?
How do certain apps show new notifications when internet access is restricted to them?
A Mainer Expression
filtering list and auto set last value of filtered list
How to apply filters to *ngFor?Angular - Set headers for every requestngFor with index as value in attributeHow to go back last pagehow to set value in array form with angularSuggestion List with Angular 5Placeholder in mat-autoComplete does not work as illustrated in the Angular Material Documentationmat autocomplete for a non-async dataHow to convert filtered autocomplete textbox from Angular templated form to Angular reactive form without ngModelIonic 3- Possible to trigger an IonChange event from component?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I have a input box in html using mat-autocomplete, which filtered out the list on value changes, which is working fine. Actually I want to auto set the last remaining value of the array to the input box, which also is working fine, but the problem is I am unable to clear the value in the input box in browser using backspace after setting the value. Below is the code shortened for clarity.
<mat-form-field>
<input formControlName="charge" name="charge" matInput placeholder="charge" [matAutocomplete]="auto">
<mat-autocomplete #auto="matAutocomplete">
<mat-option *ngFor="let option of filteredOptions | async" [value]="option">
option
</mat-option>
</mat-autocomplete>
</mat-form-field>
and in .ts file
filteredOptions: Observable<string[]>;
options: ['one', 'two', 'three', 'four', 'five', 'six'] // for demo purpose
filteredArr;
ngOnInit()
this.filteredOptions = this.myForm.get('charge').valueChanges
.pipe(map(value => this._filter(value)));
private _filter(val)
const filterValue = val.toLowerCase();
this.filteredArr = this.options.filter(option => option.toLowerCase().includes(filterValue));
if(this.filteredArr.length == 1)
// tried with setValue too, same result
this.myForm.get('charge').patchValue(this.filteredArr[0], emitEvent: false);
this.filteredArr = [];
return this.filteredArr;
return this.filteredArr;
Thanks in advance. Let me know if required more information.

add a comment
|
I have a input box in html using mat-autocomplete, which filtered out the list on value changes, which is working fine. Actually I want to auto set the last remaining value of the array to the input box, which also is working fine, but the problem is I am unable to clear the value in the input box in browser using backspace after setting the value. Below is the code shortened for clarity.
<mat-form-field>
<input formControlName="charge" name="charge" matInput placeholder="charge" [matAutocomplete]="auto">
<mat-autocomplete #auto="matAutocomplete">
<mat-option *ngFor="let option of filteredOptions | async" [value]="option">
option
</mat-option>
</mat-autocomplete>
</mat-form-field>
and in .ts file
filteredOptions: Observable<string[]>;
options: ['one', 'two', 'three', 'four', 'five', 'six'] // for demo purpose
filteredArr;
ngOnInit()
this.filteredOptions = this.myForm.get('charge').valueChanges
.pipe(map(value => this._filter(value)));
private _filter(val)
const filterValue = val.toLowerCase();
this.filteredArr = this.options.filter(option => option.toLowerCase().includes(filterValue));
if(this.filteredArr.length == 1)
// tried with setValue too, same result
this.myForm.get('charge').patchValue(this.filteredArr[0], emitEvent: false);
this.filteredArr = [];
return this.filteredArr;
return this.filteredArr;
Thanks in advance. Let me know if required more information.

add a comment
|
I have a input box in html using mat-autocomplete, which filtered out the list on value changes, which is working fine. Actually I want to auto set the last remaining value of the array to the input box, which also is working fine, but the problem is I am unable to clear the value in the input box in browser using backspace after setting the value. Below is the code shortened for clarity.
<mat-form-field>
<input formControlName="charge" name="charge" matInput placeholder="charge" [matAutocomplete]="auto">
<mat-autocomplete #auto="matAutocomplete">
<mat-option *ngFor="let option of filteredOptions | async" [value]="option">
option
</mat-option>
</mat-autocomplete>
</mat-form-field>
and in .ts file
filteredOptions: Observable<string[]>;
options: ['one', 'two', 'three', 'four', 'five', 'six'] // for demo purpose
filteredArr;
ngOnInit()
this.filteredOptions = this.myForm.get('charge').valueChanges
.pipe(map(value => this._filter(value)));
private _filter(val)
const filterValue = val.toLowerCase();
this.filteredArr = this.options.filter(option => option.toLowerCase().includes(filterValue));
if(this.filteredArr.length == 1)
// tried with setValue too, same result
this.myForm.get('charge').patchValue(this.filteredArr[0], emitEvent: false);
this.filteredArr = [];
return this.filteredArr;
return this.filteredArr;
Thanks in advance. Let me know if required more information.

I have a input box in html using mat-autocomplete, which filtered out the list on value changes, which is working fine. Actually I want to auto set the last remaining value of the array to the input box, which also is working fine, but the problem is I am unable to clear the value in the input box in browser using backspace after setting the value. Below is the code shortened for clarity.
<mat-form-field>
<input formControlName="charge" name="charge" matInput placeholder="charge" [matAutocomplete]="auto">
<mat-autocomplete #auto="matAutocomplete">
<mat-option *ngFor="let option of filteredOptions | async" [value]="option">
option
</mat-option>
</mat-autocomplete>
</mat-form-field>
and in .ts file
filteredOptions: Observable<string[]>;
options: ['one', 'two', 'three', 'four', 'five', 'six'] // for demo purpose
filteredArr;
ngOnInit()
this.filteredOptions = this.myForm.get('charge').valueChanges
.pipe(map(value => this._filter(value)));
private _filter(val)
const filterValue = val.toLowerCase();
this.filteredArr = this.options.filter(option => option.toLowerCase().includes(filterValue));
if(this.filteredArr.length == 1)
// tried with setValue too, same result
this.myForm.get('charge').patchValue(this.filteredArr[0], emitEvent: false);
this.filteredArr = [];
return this.filteredArr;
return this.filteredArr;
Thanks in advance. Let me know if required more information.


asked Mar 28 at 11:34
SuryanSuryan
5155 silver badges11 bronze badges
5155 silver badges11 bronze badges
add a comment
|
add a comment
|
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/4.0/"u003ecc by-sa 4.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
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%2f55396585%2ffiltering-list-and-auto-set-last-value-of-filtered-list%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
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%2f55396585%2ffiltering-list-and-auto-set-last-value-of-filtered-list%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