Content save issue in multifield
Hi,
I am using custommultifield.js for the custom multifields inside my dialog. Here i am facing one issue with dialogfieldset widget. In JCR value of selectgrid is setting properly under node parsys --> gridslider --> options --> item_1 when i submitted the dialog.
But inside item_1 my other properties are not getting store like color1,position1. Below is my dialog.xml. Any Idea how can this will be get store or what will be the exact path to store them.
<?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" title="Slider" width="{Long}650" xtype="dialog"> <items jcr:primaryType="cq:Widget" xtype="tabpanel"> <items jcr:primaryType="cq:WidgetCollection"> <tab1 jcr:primaryType="cq:Panel" title="Slider"> <items jcr:primaryType="cq:WidgetCollection"> <typeconfigs jcr:primaryType="cq:Widget" fieldLabel="Select Videos" name="./options" xtype="customconfigmultifield"> <fieldConfigs jcr:primaryType="cq:WidgetCollection"> <gridlayout jcr:primaryType="cq:Widget" fieldLabel="Select the grid" itemId="dispotions" layout="hbox" name="selectgrid" type="radio" xtype="selection"> <options jcr:primaryType="cq:WidgetCollection"> <grid1 jcr:primaryType="nt:unstructured" text="grid1" value="grid1"/> </options> </gridlayout> <fieldset jcr:primaryType="cq:Widget" id="fieldset0" title="Optional Video" width="{Long}300" xtype="dialogfieldset"> <items jcr:primaryType="cq:WidgetCollection"> <colour jcr:primaryType="cq:Widget" fieldLabel="Colour" name="color1" type="select" xtype="selection"> <options jcr:primaryType="cq:WidgetCollection"> <one jcr:primaryType="nt:unstructured" text="Tangerine" value="tangerine"/> </options> </colour> <position jcr:primaryType="cq:Widget" fieldLabel="Position" name="position1" type="select" xtype="selection"> <options jcr:primaryType="cq:WidgetCollection"> <one jcr:primaryType="nt:unstructured" text="Top Left" value="top_left"/> </position> </items> </fieldset> </fieldConfigs> </typeconfigs> </items> </tab1> </items> </items> </jcr:root>Thanks