0

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

最终的编辑器需要具备以下功能:

在此处输入图像描述

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

{
                "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":"* "}}
            }
4

1 回答 1

1

我发现我添加的属性存在问题。

"features":"* "随处可见额外的空间"*"。删除后,它工作正常

于 2013-08-21T09:42:41.690 回答