Is it possible to have nested form data keys? For example I have the following data (sample data to be an example, not actual data of course) as the source for a form:
Hi there, This hasn't been added to our roadmap yet Would you be able to work around this limitation by transforming your data to be an object with a depth of only 1?
This is exactly what I did the couple times I ran into this. For those coming across this in the future, this function should unnest a object recursively, adding periods between the keys. Probably isn't perfect but will give you a good starting point to work from. My original example would look like this:
+1 to adding support for this. I would even be fine with using a container inside a form to act as the object wrapper for any form keys inside it. In the example above, you could have a container with the form key "social_media" and then two inputs inside it with the form keys "facebook" and "twitter". When rendering the data, the form would be nested properly.