We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
Placeholder should be at the top left corner when value is entered
when value is bound to input, the placeholder overlaps with the value. The placeholder and value are at the same place
Just bind a value to the <input md-input value="{{boundValue}}" Providing a Plunker (or similar) is the best way to get the team to see your issue. Plunker template: http://plnkr.co/edit/o077B6uEiiIgkC0S06dd
The text was updated successfully, but these errors were encountered:
first of all, you should not do
<input value="{{boundValue}}" />
and do this instead
<input [value]="boundValue" />
while it might work, it's simply not valid way of doing things in angular(2)
...as for the actual problem, it was recently fixed, so it will be working in the next release(you can use https://github.com/angular/material2-builds meanwhile)
Sorry, something went wrong.
Sounds like something that #2455 should fix.
still facing this issue with material version 5.0.4
This issue has been automatically locked due to inactivity. Please file a new issue if you are encountering a similar or related problem.
Read more about our automatic conversation locking policy.
This action has been performed automatically by a bot.
No branches or pull requests
Bug, feature request, or proposal:
What is the expected behavior?
Placeholder should be at the top left corner when value is entered
What is the current behavior?
when value is bound to input, the placeholder overlaps with the value.
The placeholder and value are at the same place
What are the steps to reproduce?
Just bind a value to the
<input md-input value="{{boundValue}}"
Providing a Plunker (or similar) is the best way to get the team to see your issue.
Plunker template: http://plnkr.co/edit/o077B6uEiiIgkC0S06dd
What is the use-case or motivation for changing an existing behavior?
Which versions of Angular, Material, OS, browsers are affected?
Is there anything else we should know?
The text was updated successfully, but these errors were encountered: