ember-form-components icon indicating copy to clipboard operation
ember-form-components copied to clipboard

Reusable form components for emberjs with built in validation

Results 3 ember-form-components issues
Sort by recently updated
recently updated
newest added

``` EmberFormComponents.Form = Ember.Mixin.create({ showFieldValidation: false, validationFields: Ember.A(), isFormValid: function () { return !this.get('validationFields').any(function (field) { return !field.get('isValid'); }); }.property('[email protected]') }); ``` Lets say two controllers A & B mix...

This component is not compatible with ember 1.2.0. The components do not render. I started looking into it, but could not find the issue. I have to admit thought that...

JSBIN: http://jsbin.com/aRaPeTA/10/edit - Enter valid data for all 4 fields - Save turns green and hit enter - It tranistions - click link "index" - now enter valid data for...