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) | Community
Skip to main content
Level 2
October 16, 2015
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)

  • October 16, 2015
  • 3 replies
  • 2105 views

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>

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by Ratna_Kumar

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.

3 replies

Ratna_Kumar
Ratna_KumarAccepted solution
Level 10
October 16, 2015

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.

edubey
Level 10
October 16, 2015

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

ShashisdAuthor
Level 2
October 16, 2015

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?