I have been assigned to a project that involves using formly to create various types of forms. Most of them are basic single page forms or forms generated from jsonSchema. My task is to explore nested forms with tabs, among other features.
Although it appears to be functional, there seems to be an issue with creating nested objects in the model. I am aiming for a structure like this:
{
category1: {
subcat1: {
field1: 'value',
field2: 'value'
},
subcat2: {
field1: 'value',
field2: 'value'
}
},
category2: {
...
}
}