我需要使用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":"* "}}
}
答案 0 :(得分:1)
我发现了我添加的属性的问题。
"features":"* "
"*"
到处都有额外的空格。删除后,它正常工作