CQ5中的RTE插件使用CQ.Util.Build

时间:2013-08-21 05:37:08

标签: cq5 rich-text-editor aem

我需要使用CQ.Util.Build创建一个RTE(作为“/ foundation / social / blog / entryform”JSP中已完成的扩展)。 我正在使用CQ5.6和Firefox浏览器

最终编辑需要有一些这些功能:

enter image description here

我尝试使用此代码,但我仍未在编辑器中看到任何新功能:

{
                "xtype":"richtext",
                "id":"<%= id %>_text",
                "name":"text",
                "enableSourceEdit":true,
                "width":"100%",
                "rtePlugins":{
                        "spellcheck":{"features":"*"},
                        "image":{"features":"* "},
                        "edit":{"features":"* "},
                        "justify":{"features":"* "},
                        "misctools":{"features":"* "},
                        "table":{"features":"* "},
                        "undo":{"features":"* "}}
            }

1 个答案:

答案 0 :(得分:1)

我发现了我添加的属性的问题。

"features":"* " "*"到处都有额外的空格。删除后,它正常工作