Hello,
Using Vue Vanilla, I have the following structure:
publicKeys: {
key1: { ... },
key2: { ... }
}
I would like to handle this structure in the same way as an array with the ArrayRenderer, enabling functionality such as:
- Adding/removing rows
- Updating both the key and its corresponding content at any time
Essentially, I want to achieve the same behavior as if the structure were defined like this:
publicKeys: [
{ key: 'key1', value: { ... } },
{ key: 'key2', value: { ... } }
]
Has anyone implemented or encountered a way to manage an object like this with ArrayRenderer behavior in JSONForms? Any guidance would be appreciated!