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

Broken layout in horizontal-form #102

Open jaaksarv opened 9 years ago

jaaksarv commented 9 years ago

I'm using ember-forms in newly created Ember-CLI project, but the layout for horizontal forms seems to be broken.

Template: {{#em-form model=model form_layout="horizontal"}} {{em-input label="Name" property="name"}} {{/em-form}}

Output looks like this: ember-forms

It seems that label element doesn't have col-sm-2 class.

Also additional submit button is automatically created that is not described in ember-forms classes. How to disable that button?

yratanov commented 9 years ago

Commented property is used by label component

kevintechie commented 8 years ago

I am experiencing the same problem. The demo works properly, but the latest version does not.

eskimomatt commented 8 years ago

same problem here - the labels float to the right of the fields

jwigley commented 8 years ago

Also additional submit button is automatically created that is not described in ember-forms classes. How to disable that button?

{{#em-form model=model submit_button=false }}