indexiatech / ember-forms

Smart, Intuitive forms for Ember.js styled with Bootstrap, Multi layouts and Validation support.
http://indexiatech.github.io/ember-forms
Apache License 2.0
218 stars 45 forks source link

Bind value to em-input #63

Closed e00dan closed 9 years ago

e00dan commented 9 years ago

How to bind existing value to em-input? Using {{input value=model.firstName}} works, but

{{em-input property="name" label="Nazwa konta" placeholder="Podaj nazwę" value=model.firstName}}

doesn't. It renders empty input and doesn't update model value.

e00dan commented 9 years ago

It was my mistake. I used property="name" instead of property="firstName". Now it works as expected. ; )