gpt4 book ai didi

aem - AEM 的一个对话框选项卡上可以显示多个 smartimage xtypes 吗?

转载 作者:行者123 更新时间:2023-12-04 18:03:48 24 4
gpt4 key购买 nike

Adobe Experience Manager (AEM) (CQ5) 中的开箱即用 (OOTB) 页面属性对话框提供了一个图像选项卡。我想在对话框中添加更多图像,但我不想为每个图像创建单独的选项卡。

例如,有没有办法在 dialogfielset 中的“高级”选项卡上包含图像?我试过这个,但它似乎没有正确渲染。

我正在考虑的一件事是扩展幻灯片 xtype,每个图像将是一个单独的“幻灯片”

有更好的方法吗?

最佳答案

它是 可能 有多个 smartimage选项卡上的 xtypes!

smartimage 的小部件 API 文档:

Note that the component is mainly designed for use on a separate dialog tab. You may use the component inside a CQ.Ext.layout.FormLayout optionally if you provide a suitable height setting.



以下是对话框的代码:

<?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"
jcr:primaryType="cq:Dialog"
height="{Long}600"
title="dialog"
xtype="dialog">
<items
jcr:primaryType="cq:Widget"
xtype="tabpanel">
<items jcr:primaryType="cq:WidgetCollection">
<panel
jcr:primaryType="cq:Panel"
title="Panel with two Images">
<items jcr:primaryType="cq:WidgetCollection">
<firstimage
jcr:primaryType="cq:Widget"
cropParameter="./firstimage/imageCrop"
ddGroups="[media]"
fieldLabel="first image field"
fileNameParameter="./firstimage/fileName"
fileReferenceParameter="./firstimage/fileReference"
height="{Long}200"
name="./firstimage/file"
rotateParameter="./firstimage/imageRotate"
title="First Image"
width="{Long}200"
xtype="html5smartimage"/>
<secondimage
jcr:primaryType="cq:Widget"
cropParameter="./secondimage/imageCrop"
ddGroups="[media]"
fieldLabel="second image field"
fileNameParameter="./secondimage/fileName"
fileReferenceParameter="./secondimage/fileReference"
height="{Long}200"
name="./secondimage/file"
rotateParameter="./secondimage/imageRotate"
title="secondimage"
width="{Long}200"
xtype="html5smartimage"/>
</items>
</panel>
</items>
</items>
</jcr:root>

结果如下:
dialog with two images in single tab

关于aem - AEM 的一个对话框选项卡上可以显示多个 smartimage xtypes 吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18897531/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com