Ниже приведен фрагмент моего диалога. Я пытаюсь реализовать многополевой диалог.
<tab
jcr:primaryType="nt:unstructured"
sling:resourceType="granite/ui/components/foundation/container">
<items
jcr:primaryType="nt:unstructured">
<usersubmenudetails
jcr:primaryType="nt:unstructured"
sling:resourceType="granite/ui/components/foundation/form/multifield"
class="full-width"
fieldDescription="Click 'Add field' to add new links to Content Block 1"
fieldLabel="Content block 1 links">
<field
jcr:primaryType="nt:unstructured"
sling:resourceType="granite/ui/components/foundation/form/fieldset"
acs-commons-nested=""
name="./contentBlock1Links">
<layout
jcr:primaryType="nt:unstructured"
sling:resourceType="granite/ui/components/foundation/layouts/fixedcolumns"
method="absolute"/>
<items
jcr:primaryType="nt:unstructured">
<column
jcr:primaryType="nt:unstructured"
sling:resourceType="granite/ui/components/foundation/container">
<items
jcr:primaryType="nt:unstructured">
<label
jcr:primaryType="nt:unstructured"
sling:resourceType="granite/ui/components/coral/foundation/form/textfield"
fieldDescription="Enter a label for the Nav link"
fieldLabel="Label"
name="./ollinklabel"/>
<link
jcr:primaryType="nt:unstructured"
sling:resourceType="granite/ui/components/coral/foundation/form/pathbrowser"
fieldDescription="Provide a navigation link."
fieldLabel="Link"
name="./ollinklink"
rootPath="/content"/>
</items>
</column>
</items>
</field>
</usersubmenudetails>
</items>
</tab>
Диалог работает нормально, и я могу ввести требуемые значения в структуру узла содержимого страницы -
![enter image description here](https://i.stack.imgur.com/1ZUcI.png)
Проблема в том, что я хочу, чтобы данные хранились вот так -
![enter image description here](https://i.stack.imgur.com/XNe0W.png)
Как мне этого добиться ?