CQ5-如何在自定义小部件中添加rte插件

时间:2014-05-19 13:52:50

标签: cq5 richtext

我在自定义小部件中添加了richtext,但我不知道如何为richtext添加aditinal插件。

请帮助我们如何实现同样的目标。 我试图在richtext中添加上标/下标但不能达到相同的效果。

1 个答案:

答案 0 :(得分:1)

以下是我用于将此功能添加到richtext字段的代码段。

 <text
        jcr:primaryType="cq:Widget"
        hideLabel="{Boolean}true"
        name="./text"
        xtype="richtext">
    <rtePlugins jcr:primaryType="nt:unstructured">
        <subsuperscript
                jcr:primaryType="nt:unstructured"
                features="*"/>
    </rtePlugins>
</text>

此代码段属于自定义组件的 dialog.xml

请查看the documentation for configuring the rich text editor了解详情。