-
Notifications
You must be signed in to change notification settings - Fork 6.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
md-select default value #2762
Comments
Was about to raise a similar issue regarding the default value on md-select. The following does not set the default value of the select either: -
When selectedYear.Key : -
Works fine on a normal . Maybe raise this as seperate issue? |
Somehow my code now works (we made mayor backend changes). So my issue bay be caused by angular 2 meteor I use and not material problem. If I find out something new I write a comment here. |
@Tytam Given that your code now works, I'm going to close this for now. Feel free to open a new issue if you run into anything else. @asbcoder It sounds like you may have run into #2497, which was fixed in #2499. It's in master, but not yet released. If you're still having problems after the next release, please open an issue. |
Please open this issue, I am having the same issue now. The default value does not show up, it shows the placeholder instead. |
I've run into this before with numbers and it was because our types misaligned. Worth making sure your types are correct if one runs into this. |
Facing same issue in following --
default value -- |
This issue has been automatically locked due to inactivity. Read more about our automatic conversation locking policy. This action has been performed automatically by a bot. |
Bug, feature request, or proposal:
When using formBuilder default value passed to formBuilder does not show as selected in md-select.
What is the expected behavior?
If I select value in formBuilder its name and value should appear as selected option of md-select.
What is the current behavior?
Placeholder is displayed instead.
What are the steps to reproduce?
typescript:
this.editForm = this.formBuilder.group({ projectId: [this.task.project._id] });
or:
this.editForm = this.formBuilder.group({ projectId: new FormControl({value: this.task.project._id}, Validators.required) });
html:
<form layout="column" [formGroup]="editForm" (ngSubmit)="saveTask(task)"><md-select formControlName="projectId" name="project" placeholder="{{'FORM.PROJECT' | translate }}"><md-option *ngFor="let project of projects | async" [value]="project._id">{{project.name}}</md-option></md-select><select formControlName="projectId" name="project"><option *ngFor="let project of projects | async" [value]="project._id">{{project.name}}</option></select></form>
standard html works, md does't
What is the use-case or motivation for changing an existing behavior?
Edit forms. Lets have a class with 20 attributes each of them can be changed using one form. You don't want to refill all these attributes if you want to change just one.
Which versions of Angular, Material, OS, browsers are affected?
Angular 2.2.1
Material 2.0.0-beta.1
WIN 10 Vivaldi Firefox tested (but probably all affected)
Is there anything else we should know?
The text was updated successfully, but these errors were encountered: