Radio Button Selection for Multifield
I need an identifier in tabs such that author can specify which tab will open at page load Below is my dialog.xml.
<items jcr:primaryType="cq:WidgetCollection"> <typeconfigs jcr:primaryType="cq:Widget" fieldLabel="Accordion" name="./options" xtype="customconfigmultifield"> <fieldConfigs jcr:primaryType="cq:WidgetCollection"> <option jcr:primaryType="cq:Widget" hidden="{Boolean}true" name="option_name" xtype="textfield"/> <optionval jcr:primaryType="cq:Widget" allowBlank="{Boolean}false" fieldLabel="Title" maxLength="{Long}60" name="optionval" xtype="textfield"/> <openaccordion jcr:primaryType="cq:Widget" name="selectaccordion" type="radio" xtype="selection"> <options jcr:primaryType="cq:WidgetCollection"> <one jcr:primaryType="nt:unstructured" text="Open at Page Load" value="in"/> </options> </openaccordion> </fieldConfigs> <limit jcr:primaryType="nt:unstructured" maxVal="{Long}15"/> </typeconfigs> </items>But now i am not getting the behavior of radio button, means i can tick all radio buttons inside each tab that i add via dialog. Any idea how can i make that switch possible. Thanks
[img]tabs.png[/img]