Dialog with absolute name attributes
I am looking to store the information of a component dialog in a static position in the repository, I am trying to store the information in the principal page in the below way:
<?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="Breadcrumb" xtype="dialog"> <items jcr:primaryType="cq:Widget" xtype="tabpanel"> <items jcr:primaryType="cq:WidgetCollection"> <tab1 jcr:primaryType="cq:Panel" title="Breadcrumb Configuration"> <items jcr:primaryType="cq:WidgetCollection"> <items jcr:primaryType="cq:WidgetCollection"> <absParent jcr:primaryType="nt:unstructured" defaultValue="2" fieldLabel="Parent Level (absolute)" name="/content/principalpage/jcr:content/breadcrumb/absParent" xtype="textfield"/> <delim jcr:primaryType="nt:unstructured" defaultValue=" > " fieldLabel="Delimiter" name="/content/principalpage/jcr:content/breadcrumb/delim" xtype="textfield"/> </items> </items> </tab1> </items> </items> </jcr:root>
With this dialog configuration the information is stored in the correct position in the repository, but it is not been recovered appropriately. Someone can help me?
Thank you.