0

I want to populate the format-box in CKEditor toolbar dynamically (depending on what the user selects in another select box). Is it possible to change the options of the format-combo box dynamically , without reloading the whole CKEditor ?

4

1 回答 1

0

最短的答案是:不。然而...

负责此框的插件是格式插件init它在编辑器初始化时调用函数期间收集所有数据。如果你想动态填充这个东西,你需要自己改变这个插件的一些逻辑。

您可能对onRender插件用于动态更改组合值的丰富组合的回调感兴趣。另一件事情可能是格式插件使用的丰富组合的add() 方法。我很确定您必须扩展richcombo 插件来删除项目。

总之祝你好运!

于 2013-07-01T10:46:28.223 回答