ember-cli-dynamic-forms
ember-cli-dynamic-forms copied to clipboard
An Ember addon for creating dynamic forms
tried to use it with a clean `ember 3.10` project and installation of bower dependencies gets stuck no commit in 3 years means it's not maintained anymore, are there any...
This PR updates the docs to correct the path of the form validation helpers.
The goal is to be able to swap the alpaca renderer with other kinds of renderers, namely renderers that render actual ember components to the form. We'll use ember config...
Currently alpaca allows you to "register" new form field widget types by extending their field objects. This issue is to explore what it might take to get it to use...
I've been digging into this and Alpaca directly, but I can't find a clear answer: would it be possible to specify a custom view (`web-create` for example) in the component...
If form values are updated outside the dynamic form, the form should recognize this and rerender or update its values accordingly. We should have a separate attribute to provide data,...
This is not a current capability of alpaca, but since we are making validators reusable with ember-cli-dynamic-forms, we want to support it. With this feature, the validator field has the...
Often, fields have dependencies on each other, so that when one field is updated, a function gets run that can manipulate the other. Dynamic forms should allow implementers to provide...
Alpaca provides a destroy method to clean itself up. We should ensure this function is called when the component is destroyed. See the `destroy` section of the article: http://www.alpacajs.org/docs/api/functions.html
The component should be able to either covert a model to json-schema based in its fields, or use a json-schema adapter and fetch the underlying schema. This will allow non-json-schema...