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

Easily create forms with client side validations.

Results 52 ember-validated-form issues
Sort by recently updated
recently updated
newest added

Bumps [ember-cli](https://github.com/ember-cli/ember-cli) from 4.2.0 to 4.3.0. Release notes Sourced from ember-cli's releases. Release 4.3.0 Blueprint Changes ember new diff ember addon diff Changelog #9707 [RFC 772] Deprecate Bower support @​bertdeblock...

dependencies
javascript

BREAKING CHANGE: This changes the global configuration for features, themes and default components completely. For instructions on how to migrate, check the migration to v6 guide.

When using the validated form with `@on-submit` to execute an action when submitting the form, the event and sender parameter aren't passed to the action.

Say I have following in my route: ``` this.intl.setLocale(['cs']); ``` Which works for every part of my app. Unfortunatelly with `ember-validated-form` this setting is not honored in the label of...

Several experts explain that marking a field as `optional` instead of `required` improves the comfortability of the user. (e.g https://uxdesign.cc/form-field-required-vs-optional-9b4d7cdbf400) We should consider adding an `optional` option for the label....

I just started using your form extensions and also haven't used ember-changeset before. I'm currently struggling with figuring out the best way to have inline forms. We have a candidate...

For some reason, despite setting an action on the forms ```on-submit```, clicking on ```{{f.submit}}``` refreshes my browser, as if its posting the form. As a workaround I've set ```tagName="div"``` on...

I think #95 introduced a regression where checkbox elements don't use a span wrapped label anymore. https://github.com/adfinis-sygroup/ember-validated-form/pull/95/files#diff-3fdbc85ba77b90bb068fe83da64dee87L85 removed wrapping the checkbox label in a span by introducing a `validated-label` that...

Right now setDirty always sets the `dirty` property to `true`. We could make it more clever to only `dirty` the form if the [changeset `isDirty`](https://github.com/poteto/ember-changeset#isdirty) is `true`. This also helps...