Images are not retaining in dialog when i have 2 html5smartimge in same dialog(i want to hav different name for 'fileReferenceParameter' in both image nodes)
i have following dialog structure for two image nodes, i can able to author 2 images for the first time in dialog with all crop features,when i edit it for second time,dialog has no previous authored images and all editing features are disabled, i can overcome from this just by adding '.image/fileReference' and '.image2/fileReference' for the fileReferenceParameter, but i can not do this as my framework does not read the values for child nodes in content tree,i should have different 'fileReferenceParameter' in both image nodes, please help me if you know solution for this(any method other than having ''.image/fileReference'' as names
)
<items jcr:primaryType="cq:WidgetCollection">
<block1image
jcr:primaryType="cq:Widget"
allowUpload="{Boolean}false"
cropParameter="./block1imageCrop"
ddGroups="[media]"
fileNameParameter="./block1fileName"
fileReferenceParameter="./block1fileReference"
id="img1"
mapParameter="./block1imageMap"
name="./block1file"
requestSuffix=".img.png"
rotateParameter="./block1imageRotate"
title="Block1 Image"
xtype="html5smartimage">
</block1image>
<block2image
jcr:primaryType="cq:Widget"
allowUpload="{Boolean}false"
cropParameter="./block2imageCrop"
ddGroups="[media]"
fileNameParameter="./block2fileName"
fileReferenceParameter="./block2fileReference"
id="img2"
mapParameter="./block2imageMap"
name="./block2file"
requestSuffix=".img.png"
rotateParameter="./block2imageRotate"
title="Block2 Image"
xtype="html5smartimage">
</block2image>
</items>