0

我需要在 CQ5 中禁用/删除开箱即用组件“文本”的“粗体”选项?可能吗?

4

1 回答 1

2

是的。富文本编辑器可以根据您的要求进行配置,如此所述。

因此,根据您的要求,在您的富文本小部件下创建一个 nt:unstructured 节点“ rtePlugins ”,然后在 rtePlugins 下创建另一个 nt:unstructured 节点“ format ”,并根据您的要求添加名为“features”的多值属性,即,斜体和下划线。

相同的json如下所示,

text: { xtype: "richtext", name: "./text", hideLabel: true, 
    jcr:primaryType: "cq:Widget",
    rtePlugins: {
        jcr:primaryType: "nt:unstructured",
        format: {
            features: [ "italic", "underline" ],
            jcr:primaryType: "nt:unstructured"
        }
    }
},
于 2013-10-29T07:10:46.980 回答