mat-autocomplete not binding correctly
up vote
2
down vote
favorite
I'm attempting to use two matInput fields that each bind with separate mat-autocomplete panels. Following the steps here, I'm able to get one to work fine, but I'm having difficulties with two input fields and autocomplete panels.
Here's my html:
<form>
<mat-form-field>
<input matInput [matAutocomplete]="first" [formControl]="myControl">
<mat-autocomplete #first="matAutocomplete">
<mat-option *ngFor="let option of filteredOptions1 | async" [value]="option">
option
</mat-option>
</mat-autocomplete>
</mat-form-field>
<mat-form-field>
<input matInput [matAutocomplete]="second" [formControl]="otherControl">
<mat-autocomplete #second="matAutocomplete">
<mat-option *ngFor="let option of filteredOptions2 | async" [value]="option">
option
</mat-option>
</mat-autocomplete>
</mat-form-field>
</form>
Here's my component:
import Component, OnInit from '@angular/core';
import FormControl from '@angular/forms';
import Observable from 'rxjs';
import map, startWith from 'rxjs/operators';
@Component(
selector: 'app-property-create',
templateUrl: './property-create.component.html',
styleUrls: ['./property-create.component.css']
)
export class PropertyCreateComponent implements OnInit
myControl = new FormControl();
otherControl = new FormControl();
options1: string = ['One', 'Two', 'Three'];
options2: string = ['Four', 'Five', 'Six'];
filteredOptions1: Observable<string>;
filteredOptions2: Observable<string>;
constructor()
ngOnInit()
this.filteredOptions1 = this.myControl.valueChanges
.pipe(
startWith(''),
map(value => this._filter(value))
);
this.filteredOptions2 = this.otherControl.valueChanges
.pipe(
startWith(''),
map(value => this._filter2(value))
);
private _filter(value: string): string
const filterValue = value.toLowerCase();
return this.options1.filter(option => option.toLowerCase().includes(filterValue));
private _filter2(value: string): string
const filterValue = value.toLowerCase();
return this.options2.filter(option => option.toLowerCase().includes(filterValue));
When linking each text input field to the corresponding panel, I'm using [matAutocomplete]="first" to link the first panel to the first text input. Based on the Angular Material docs, I was expecting to be able to link the second text input field to the second autocomplete panel by using [matAutocomplete]="second".
Right now my autocomplete panels are showing up in the same spot, rather than under the corresponding text field.
Has anyone seen this or know what I'm doing wrong?
angular angular-material mat-autocomplete
add a comment |
up vote
2
down vote
favorite
I'm attempting to use two matInput fields that each bind with separate mat-autocomplete panels. Following the steps here, I'm able to get one to work fine, but I'm having difficulties with two input fields and autocomplete panels.
Here's my html:
<form>
<mat-form-field>
<input matInput [matAutocomplete]="first" [formControl]="myControl">
<mat-autocomplete #first="matAutocomplete">
<mat-option *ngFor="let option of filteredOptions1 | async" [value]="option">
option
</mat-option>
</mat-autocomplete>
</mat-form-field>
<mat-form-field>
<input matInput [matAutocomplete]="second" [formControl]="otherControl">
<mat-autocomplete #second="matAutocomplete">
<mat-option *ngFor="let option of filteredOptions2 | async" [value]="option">
option
</mat-option>
</mat-autocomplete>
</mat-form-field>
</form>
Here's my component:
import Component, OnInit from '@angular/core';
import FormControl from '@angular/forms';
import Observable from 'rxjs';
import map, startWith from 'rxjs/operators';
@Component(
selector: 'app-property-create',
templateUrl: './property-create.component.html',
styleUrls: ['./property-create.component.css']
)
export class PropertyCreateComponent implements OnInit
myControl = new FormControl();
otherControl = new FormControl();
options1: string = ['One', 'Two', 'Three'];
options2: string = ['Four', 'Five', 'Six'];
filteredOptions1: Observable<string>;
filteredOptions2: Observable<string>;
constructor()
ngOnInit()
this.filteredOptions1 = this.myControl.valueChanges
.pipe(
startWith(''),
map(value => this._filter(value))
);
this.filteredOptions2 = this.otherControl.valueChanges
.pipe(
startWith(''),
map(value => this._filter2(value))
);
private _filter(value: string): string
const filterValue = value.toLowerCase();
return this.options1.filter(option => option.toLowerCase().includes(filterValue));
private _filter2(value: string): string
const filterValue = value.toLowerCase();
return this.options2.filter(option => option.toLowerCase().includes(filterValue));
When linking each text input field to the corresponding panel, I'm using [matAutocomplete]="first" to link the first panel to the first text input. Based on the Angular Material docs, I was expecting to be able to link the second text input field to the second autocomplete panel by using [matAutocomplete]="second".
Right now my autocomplete panels are showing up in the same spot, rather than under the corresponding text field.
Has anyone seen this or know what I'm doing wrong?
angular angular-material mat-autocomplete
Stackblitz would be the best
– Antoniossss
Nov 10 at 22:07
add a comment |
up vote
2
down vote
favorite
up vote
2
down vote
favorite
I'm attempting to use two matInput fields that each bind with separate mat-autocomplete panels. Following the steps here, I'm able to get one to work fine, but I'm having difficulties with two input fields and autocomplete panels.
Here's my html:
<form>
<mat-form-field>
<input matInput [matAutocomplete]="first" [formControl]="myControl">
<mat-autocomplete #first="matAutocomplete">
<mat-option *ngFor="let option of filteredOptions1 | async" [value]="option">
option
</mat-option>
</mat-autocomplete>
</mat-form-field>
<mat-form-field>
<input matInput [matAutocomplete]="second" [formControl]="otherControl">
<mat-autocomplete #second="matAutocomplete">
<mat-option *ngFor="let option of filteredOptions2 | async" [value]="option">
option
</mat-option>
</mat-autocomplete>
</mat-form-field>
</form>
Here's my component:
import Component, OnInit from '@angular/core';
import FormControl from '@angular/forms';
import Observable from 'rxjs';
import map, startWith from 'rxjs/operators';
@Component(
selector: 'app-property-create',
templateUrl: './property-create.component.html',
styleUrls: ['./property-create.component.css']
)
export class PropertyCreateComponent implements OnInit
myControl = new FormControl();
otherControl = new FormControl();
options1: string = ['One', 'Two', 'Three'];
options2: string = ['Four', 'Five', 'Six'];
filteredOptions1: Observable<string>;
filteredOptions2: Observable<string>;
constructor()
ngOnInit()
this.filteredOptions1 = this.myControl.valueChanges
.pipe(
startWith(''),
map(value => this._filter(value))
);
this.filteredOptions2 = this.otherControl.valueChanges
.pipe(
startWith(''),
map(value => this._filter2(value))
);
private _filter(value: string): string
const filterValue = value.toLowerCase();
return this.options1.filter(option => option.toLowerCase().includes(filterValue));
private _filter2(value: string): string
const filterValue = value.toLowerCase();
return this.options2.filter(option => option.toLowerCase().includes(filterValue));
When linking each text input field to the corresponding panel, I'm using [matAutocomplete]="first" to link the first panel to the first text input. Based on the Angular Material docs, I was expecting to be able to link the second text input field to the second autocomplete panel by using [matAutocomplete]="second".
Right now my autocomplete panels are showing up in the same spot, rather than under the corresponding text field.
Has anyone seen this or know what I'm doing wrong?
angular angular-material mat-autocomplete
I'm attempting to use two matInput fields that each bind with separate mat-autocomplete panels. Following the steps here, I'm able to get one to work fine, but I'm having difficulties with two input fields and autocomplete panels.
Here's my html:
<form>
<mat-form-field>
<input matInput [matAutocomplete]="first" [formControl]="myControl">
<mat-autocomplete #first="matAutocomplete">
<mat-option *ngFor="let option of filteredOptions1 | async" [value]="option">
option
</mat-option>
</mat-autocomplete>
</mat-form-field>
<mat-form-field>
<input matInput [matAutocomplete]="second" [formControl]="otherControl">
<mat-autocomplete #second="matAutocomplete">
<mat-option *ngFor="let option of filteredOptions2 | async" [value]="option">
option
</mat-option>
</mat-autocomplete>
</mat-form-field>
</form>
Here's my component:
import Component, OnInit from '@angular/core';
import FormControl from '@angular/forms';
import Observable from 'rxjs';
import map, startWith from 'rxjs/operators';
@Component(
selector: 'app-property-create',
templateUrl: './property-create.component.html',
styleUrls: ['./property-create.component.css']
)
export class PropertyCreateComponent implements OnInit
myControl = new FormControl();
otherControl = new FormControl();
options1: string = ['One', 'Two', 'Three'];
options2: string = ['Four', 'Five', 'Six'];
filteredOptions1: Observable<string>;
filteredOptions2: Observable<string>;
constructor()
ngOnInit()
this.filteredOptions1 = this.myControl.valueChanges
.pipe(
startWith(''),
map(value => this._filter(value))
);
this.filteredOptions2 = this.otherControl.valueChanges
.pipe(
startWith(''),
map(value => this._filter2(value))
);
private _filter(value: string): string
const filterValue = value.toLowerCase();
return this.options1.filter(option => option.toLowerCase().includes(filterValue));
private _filter2(value: string): string
const filterValue = value.toLowerCase();
return this.options2.filter(option => option.toLowerCase().includes(filterValue));
When linking each text input field to the corresponding panel, I'm using [matAutocomplete]="first" to link the first panel to the first text input. Based on the Angular Material docs, I was expecting to be able to link the second text input field to the second autocomplete panel by using [matAutocomplete]="second".
Right now my autocomplete panels are showing up in the same spot, rather than under the corresponding text field.
Has anyone seen this or know what I'm doing wrong?
angular angular-material mat-autocomplete
angular angular-material mat-autocomplete
asked Nov 10 at 21:22
Jared
111
111
Stackblitz would be the best
– Antoniossss
Nov 10 at 22:07
add a comment |
Stackblitz would be the best
– Antoniossss
Nov 10 at 22:07
Stackblitz would be the best
– Antoniossss
Nov 10 at 22:07
Stackblitz would be the best
– Antoniossss
Nov 10 at 22:07
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
Turns out you are missing the css classes for the form and mat-form-field elements:
<form class="example-form">
<mat-form-field class="example-full-width">
<input placeholder="Pick one" aria-label="Number" matInput [formControl]="myControl" [matAutocomplete]="first">
<mat-autocomplete #first="matAutocomplete">
<mat-option *ngFor="let option of filteredOptions1|async" [value]="option">
option
</mat-option>
</mat-autocomplete>
</mat-form-field>
<mat-form-field class="example-full-width">
<input placeholder="Pick one" aria-label="Number" matInput [formControl]="otherControl" [matAutocomplete]="second">
<mat-autocomplete #second="matAutocomplete">
<mat-option *ngFor="let option of filteredOptions2| async" [value]="option">
option
</mat-option>
</mat-autocomplete>
</mat-form-field>
</form>
Stackblitz here: https://stackblitz.com/edit/angular-gqax9d
Works in stackblitz but not on my machine. Would the css make a difference on the linking of text fields to autocomplete panels? Another weird thing happening is the placeholder isn't minimizing when I click inside of the text field.
– Jared
Nov 12 at 19:30
Make sure material and @angular/cdk versions match and have you included material css in project?
– User3250
Nov 13 at 2:17
1
Thanks for the help. I tried running ng add@angular/material
and reached the error: Your project is not using the default configuration for build and test. The Angular Material schematics can only be used with the default configuration After changing my angular.json it's working now.
– Jared
Nov 17 at 17:19
Cool! You figured it out.
– User3250
Nov 18 at 2:14
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
Turns out you are missing the css classes for the form and mat-form-field elements:
<form class="example-form">
<mat-form-field class="example-full-width">
<input placeholder="Pick one" aria-label="Number" matInput [formControl]="myControl" [matAutocomplete]="first">
<mat-autocomplete #first="matAutocomplete">
<mat-option *ngFor="let option of filteredOptions1|async" [value]="option">
option
</mat-option>
</mat-autocomplete>
</mat-form-field>
<mat-form-field class="example-full-width">
<input placeholder="Pick one" aria-label="Number" matInput [formControl]="otherControl" [matAutocomplete]="second">
<mat-autocomplete #second="matAutocomplete">
<mat-option *ngFor="let option of filteredOptions2| async" [value]="option">
option
</mat-option>
</mat-autocomplete>
</mat-form-field>
</form>
Stackblitz here: https://stackblitz.com/edit/angular-gqax9d
Works in stackblitz but not on my machine. Would the css make a difference on the linking of text fields to autocomplete panels? Another weird thing happening is the placeholder isn't minimizing when I click inside of the text field.
– Jared
Nov 12 at 19:30
Make sure material and @angular/cdk versions match and have you included material css in project?
– User3250
Nov 13 at 2:17
1
Thanks for the help. I tried running ng add@angular/material
and reached the error: Your project is not using the default configuration for build and test. The Angular Material schematics can only be used with the default configuration After changing my angular.json it's working now.
– Jared
Nov 17 at 17:19
Cool! You figured it out.
– User3250
Nov 18 at 2:14
add a comment |
up vote
0
down vote
Turns out you are missing the css classes for the form and mat-form-field elements:
<form class="example-form">
<mat-form-field class="example-full-width">
<input placeholder="Pick one" aria-label="Number" matInput [formControl]="myControl" [matAutocomplete]="first">
<mat-autocomplete #first="matAutocomplete">
<mat-option *ngFor="let option of filteredOptions1|async" [value]="option">
option
</mat-option>
</mat-autocomplete>
</mat-form-field>
<mat-form-field class="example-full-width">
<input placeholder="Pick one" aria-label="Number" matInput [formControl]="otherControl" [matAutocomplete]="second">
<mat-autocomplete #second="matAutocomplete">
<mat-option *ngFor="let option of filteredOptions2| async" [value]="option">
option
</mat-option>
</mat-autocomplete>
</mat-form-field>
</form>
Stackblitz here: https://stackblitz.com/edit/angular-gqax9d
Works in stackblitz but not on my machine. Would the css make a difference on the linking of text fields to autocomplete panels? Another weird thing happening is the placeholder isn't minimizing when I click inside of the text field.
– Jared
Nov 12 at 19:30
Make sure material and @angular/cdk versions match and have you included material css in project?
– User3250
Nov 13 at 2:17
1
Thanks for the help. I tried running ng add@angular/material
and reached the error: Your project is not using the default configuration for build and test. The Angular Material schematics can only be used with the default configuration After changing my angular.json it's working now.
– Jared
Nov 17 at 17:19
Cool! You figured it out.
– User3250
Nov 18 at 2:14
add a comment |
up vote
0
down vote
up vote
0
down vote
Turns out you are missing the css classes for the form and mat-form-field elements:
<form class="example-form">
<mat-form-field class="example-full-width">
<input placeholder="Pick one" aria-label="Number" matInput [formControl]="myControl" [matAutocomplete]="first">
<mat-autocomplete #first="matAutocomplete">
<mat-option *ngFor="let option of filteredOptions1|async" [value]="option">
option
</mat-option>
</mat-autocomplete>
</mat-form-field>
<mat-form-field class="example-full-width">
<input placeholder="Pick one" aria-label="Number" matInput [formControl]="otherControl" [matAutocomplete]="second">
<mat-autocomplete #second="matAutocomplete">
<mat-option *ngFor="let option of filteredOptions2| async" [value]="option">
option
</mat-option>
</mat-autocomplete>
</mat-form-field>
</form>
Stackblitz here: https://stackblitz.com/edit/angular-gqax9d
Turns out you are missing the css classes for the form and mat-form-field elements:
<form class="example-form">
<mat-form-field class="example-full-width">
<input placeholder="Pick one" aria-label="Number" matInput [formControl]="myControl" [matAutocomplete]="first">
<mat-autocomplete #first="matAutocomplete">
<mat-option *ngFor="let option of filteredOptions1|async" [value]="option">
option
</mat-option>
</mat-autocomplete>
</mat-form-field>
<mat-form-field class="example-full-width">
<input placeholder="Pick one" aria-label="Number" matInput [formControl]="otherControl" [matAutocomplete]="second">
<mat-autocomplete #second="matAutocomplete">
<mat-option *ngFor="let option of filteredOptions2| async" [value]="option">
option
</mat-option>
</mat-autocomplete>
</mat-form-field>
</form>
Stackblitz here: https://stackblitz.com/edit/angular-gqax9d
answered Nov 11 at 3:57
User3250
1,5433825
1,5433825
Works in stackblitz but not on my machine. Would the css make a difference on the linking of text fields to autocomplete panels? Another weird thing happening is the placeholder isn't minimizing when I click inside of the text field.
– Jared
Nov 12 at 19:30
Make sure material and @angular/cdk versions match and have you included material css in project?
– User3250
Nov 13 at 2:17
1
Thanks for the help. I tried running ng add@angular/material
and reached the error: Your project is not using the default configuration for build and test. The Angular Material schematics can only be used with the default configuration After changing my angular.json it's working now.
– Jared
Nov 17 at 17:19
Cool! You figured it out.
– User3250
Nov 18 at 2:14
add a comment |
Works in stackblitz but not on my machine. Would the css make a difference on the linking of text fields to autocomplete panels? Another weird thing happening is the placeholder isn't minimizing when I click inside of the text field.
– Jared
Nov 12 at 19:30
Make sure material and @angular/cdk versions match and have you included material css in project?
– User3250
Nov 13 at 2:17
1
Thanks for the help. I tried running ng add@angular/material
and reached the error: Your project is not using the default configuration for build and test. The Angular Material schematics can only be used with the default configuration After changing my angular.json it's working now.
– Jared
Nov 17 at 17:19
Cool! You figured it out.
– User3250
Nov 18 at 2:14
Works in stackblitz but not on my machine. Would the css make a difference on the linking of text fields to autocomplete panels? Another weird thing happening is the placeholder isn't minimizing when I click inside of the text field.
– Jared
Nov 12 at 19:30
Works in stackblitz but not on my machine. Would the css make a difference on the linking of text fields to autocomplete panels? Another weird thing happening is the placeholder isn't minimizing when I click inside of the text field.
– Jared
Nov 12 at 19:30
Make sure material and @angular/cdk versions match and have you included material css in project?
– User3250
Nov 13 at 2:17
Make sure material and @angular/cdk versions match and have you included material css in project?
– User3250
Nov 13 at 2:17
1
1
Thanks for the help. I tried running ng add
@angular/material
and reached the error: Your project is not using the default configuration for build and test. The Angular Material schematics can only be used with the default configuration After changing my angular.json it's working now.– Jared
Nov 17 at 17:19
Thanks for the help. I tried running ng add
@angular/material
and reached the error: Your project is not using the default configuration for build and test. The Angular Material schematics can only be used with the default configuration After changing my angular.json it's working now.– Jared
Nov 17 at 17:19
Cool! You figured it out.
– User3250
Nov 18 at 2:14
Cool! You figured it out.
– User3250
Nov 18 at 2:14
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%2f53243539%2fmat-autocomplete-not-binding-correctly%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
Stackblitz would be the best
– Antoniossss
Nov 10 at 22:07