无法在AEM中的对话框上显示图像

时间:2015-08-13 04:34:03

标签: extjs cq5 aem

我正在尝试创建一个带有图像预览的对话框。我能够创建所有字段的对话框,但我面临图像问题。我已经看到了图像组件,您可以拖动图像,但我需要在打开对话框组件时显示图像。是否有任何组件没有拖拽。

我尝试过使用html5smartimage图像但没有工作。请参阅以下代码:

<?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"
height="{Long}500"
title="Test Dialog"
width="{Long}800"
xtype="dialog">
<items
    jcr:primaryType="cq:Widget"
    xtype="tabpanel">
    <items jcr:primaryType="cq:WidgetCollection">
        <tab1
            jcr:primaryType="cq:Panel"
            title="Component Details">
            <items jcr:primaryType="cq:WidgetCollection">
                <image
                    jcr:primaryType="cq:Widget"
                    cropParameter="./imageCrop"
                    ddGroups="[media]"
                    fileNameParameter="./fileName"
                    fileReferenceParameter="./fileReference"
                    mapParameter="./imageMap"
                    name="./file"
                    requestSuffix=".img.png"
                    rotateParameter="./imageRotate"
                    title="Image"
                    xtype="html5smartimage">
                    <icon.png jcr:primaryType="nt:file">
                        <jcr:content
                            jcr:data="{Binary}"
                            jcr:lastModified="{Date}2015-07-28T19:27:46.878+05:30"
                            jcr:lastModifiedBy="admin"
                            jcr:mimeType="image/png"
                            jcr:primaryType="nt:resource"
                            jcr:uuid="754c14c8-4423-45df-b982-06bfc13dc6e3"/>
                    </icon.png>
                </image>
            </items>
        </tab1>
    </items>
    </items>
</jcr:root>

请帮我解决这个问题。

1 个答案:

答案 0 :(得分:5)

我不认为如果您想要做的就是使用html5smartimage,则在对话框中显示静态图像(不需要提交)。

您可以使用xtype displayfield并使用html属性,如下所示。

<?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"
    height="{Long}500"
    title="Test Dialog"
    width="{Long}800"
    xtype="dialog">
    <items
        jcr:primaryType="cq:Widget"
        xtype="tabpanel">
        <items jcr:primaryType="cq:WidgetCollection">
            <tab1
                jcr:primaryType="cq:Panel"
                title="Component Details">
                <items jcr:primaryType="cq:WidgetCollection">
                    <displayimage jcr:primaryType="cq:Widget" 
                        html="<img src='/content/dam/geometrixx/icons/target.png'>" 
                        xtype="displayfield" />
                </items>
            </tab1>
        </items>
    </items>
</jcr:root>

将图像src替换为您要在对话框中显示的图像路径。