Expand my Community achievements bar.

SOLVED

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)

Avatar

Level 2

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 smiley)

 

 

<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>

1 Accepted Solution

Avatar

Correct answer by
Level 10

Hi,

Please check this article containing 2 or more images: https://helpx.adobe.com/experience-manager/using/creating-aem-multifield-components.html

Thanks,
Ratna Kumar.

View solution in original post

3 Replies

Avatar

Correct answer by
Level 10

Hi,

Please check this article containing 2 or more images: https://helpx.adobe.com/experience-manager/using/creating-aem-multifield-components.html

Thanks,
Ratna Kumar.

Avatar

Level 10

Please go through this link for having 2 or more images: http://labs.6dglobal.com/blog/2012-09-06/building-a-dialogue-to-have-2-or-more-images/

Let me know if you need any help

Avatar

Level 2

thanks for the reply, i had gone through that url, but i want to have different fileRefencenames in both image widgets, any solutions with that?