如何在aem 6.5触摸式用户界面对话框中添加手风琴的内容?

如何在aem 6.5触摸式用户界面对话框中添加手风琴的内容?,aem,aem-6,Aem,Aem 6,我遵循一些adobe文档,使用crxde创建对话框和手风琴节点。 当我编辑页面时,它会显示一个带有手风琴的对话框。但我的问题是手风琴只有标题栏没有内容。如何在手风琴的每个标签中添加内容 注意:sling:resourceType=granite/ui/components/coral/foundation/accordion我使用这样的东西: <accordion sling:resourceType="granite/ui/components/coral/founda

我遵循一些adobe文档,使用crxde创建对话框和手风琴节点。 当我编辑页面时,它会显示一个带有手风琴的对话框。但我的问题是手风琴只有标题栏没有内容。如何在手风琴的每个标签中添加内容


注意:sling:resourceType=granite/ui/components/coral/foundation/accordion

我使用这样的东西:

<accordion
    sling:resourceType="granite/ui/components/coral/foundation/accordion"
    multiple="{Boolean}true" variant="quiet" margin="{Boolean}true">
    <items jcr:primaryType="nt:unstructured">
        <landers jcr:title="Landers" jcr:primaryType="nt:unstructured"
                sling:resourceType="granite/ui/components/coral/foundation/container">
            <items jcr:primaryType="nt:unstructured">
                <name jcr:primaryType="nt:unstructured"                     sling:resourceType="granite/ui/components/foundation/form/textfield"
                    fieldLabel="Name *" name="./name" required="{Boolean}true"
                    rowresume="{Boolean}true" />
            </items>
            <parentConfig jcr:primaryType="nt:unstructured"
                active="{Boolean}true" />
        </landers>
    </items>
</accordion>


请发布您尝试过的对话框xml和您正在使用的AEM版本。您最后运气好吗?我遇到了同样的问题。