0

Drupal 6 ckeditor 3.6.4

我有动态加载文本区域的页面,所以我正在使用

  CKEDITOR.replace('textarea-id');

哪个有效,但它带来了完整的工具栏。我更喜欢使用简化的工具栏,但如果无法加载简化的工具栏,也可以使用我定义的工具栏。最不可取的是对工具栏进行硬编码,但我认为这是最后的手段。我该如何做到这一点?

我试过了

 CKEDITOR.replace('textarea-id',
    {
        toolbar : 'myprofile'
    });

引发 js 错误:Type x is undefined ,我认为与它无法加载配置文件的事实有关。建议?

4

1 回答 1

0

无论好坏,我都是这样做的:

http://joe-riggs.com/blog/2012/11/drupal-ckeditor-load-configuration-settings-on-dynamic-page/

于 2012-11-16T18:27:29.933 回答