Is there a way I could handle repeated data in a form ?
Suppose I want to allow the user to handle multiple emails, phones, addresses etc. (for instance, like google contacts do) and would let the user add them, remove, limit up to X values, etc. in a single form - how could I do it ?
I expect the whole data to be saved into a single json (or whatever is the format) stream of course.
Couldn’t find a demo or anything clear in the docs.
You can add inputs to form dynamically, while they have different “name” attribute. In such case form.getValues() will return a json with all form values.