Dialog Values are not saving on classic UI
Hi @1709464 Community,
I'm working on classic UI project, I have to create nested multifield dialog as part of requirement. I'm able to create dialog but after authoring the values in respective fields within the multifield and if i reopen the dialog I'm seeing blank fields. not sure what's wrong within the dialog. if anyone had faced this issue , please help to find the issue, below is the dialog xml
<?xml version="1.0" encoding="UTF-8"?>
<jcr:root xmlns:cq="http://www.day.com/jcr/cq/1.0" xmlns:jcr="http://www.jcp.org/jcr/1.0" xmlns:nt="http://www.jcp.org/jcr/nt/1.0"
jcr:primaryType="cq:Dialog"
height="600"
title="Test Component"
width="{Long}800"
xtype="dialog">
<items jcr:primaryType="cq:TabPanel">
<items jcr:primaryType="cq:WidgetCollection">
<general
jcr:primaryType="cq:Panel"
title="General">
<items jcr:primaryType="cq:WidgetCollection">
<footer
jcr:primaryType="cq:Widget"
collapsible="{Boolean}true"
itemId="footer"
name="./footer"
title="Component footer"
xtype="dialogfieldset">
<items jcr:primaryType="cq:WidgetCollection">
<supportList
jcr:primaryType="cq:Widget"
border="{Boolean}true"
collapsed="{Boolean}false"
collapsible="{Boolean}false"
fieldDescription="Link title / Link"
fieldLabel="Links list:"
name="./secondLevelPages"
width="{Long}750"
xtype="multifield">
<fieldConfig
jcr:primaryType="nt:unstructured"
allowBlank="{Boolean}true"
limit="7"
xtype="multifieldcontainer">
<myItems jcr:primaryType="cq:WidgetCollection">
<supportText
jcr:primaryType="cq:Widget"
fieldLabel="Title:"
name="./pageTitleValue"
width="90%"
xtype="textfield"/>
<supportLink
jcr:primaryType="cq:Widget"
fieldLabel="Path:"
name="./pagePath"
width="90%"
xtype="pathfield"/>
<secondmulti
jcr:primaryType="cq:Widget"
composite="{Boolean}true"
fieldDescription="Child Category Links:"
fieldLabel="Child Category Pages:"
name="./childPages"
xtype="multifield">
<fieldConfig
jcr:primaryType="nt:unstructured"
allowBlank="{Boolean}true"
limit="7"
xtype="multifieldcontainer">
<myItems jcr:primaryType="cq:WidgetCollection">
<categoryText
jcr:primaryType="cq:Widget"
fieldLabel="child category Title:"
name="./categoryText"
width="90%"
xtype="textfield"/>
<categoryLink
jcr:primaryType="cq:Widget"
fieldLabel="child category Path:"
name="./categoryLinks"
width="90%"
xtype="pathfield"/>
</myItems>
</fieldConfig>
</secondmulti>
</myItems>
</fieldConfig>
</supportList>
</items>
</footer>
</items>
</general>
</items>
</items>
</jcr:root>
Thanks in advance


