我如何从ckeditor中删除链接工具栏?

时间:2011-06-18 18:56:12

标签: javascript html

我想通过删除链接和上传控件来显示ckeditor。我该如何删除它们。

有人可以告诉我如何在不更改配置文件的情况下执行此操作。我需要在我自己的js文件中执行此操作。

我需要在页面初始化和渲染之前进行配置。

2 个答案:

答案 0 :(得分:1)

FCKConfig.ToolbarSets["MyToolbarSet"] = [
    ['Bold', 'Italic', 'Underline'] // enumerate all buttons you need
];      


var oFCKeditor = new FCKeditor('MyTextArea');
        oFCKeditor.BasePath = '<%= Url.Content("~/Scripts/fckeditor/") %>';
        oFCKeditor.ToolbarSet = "MyToolbarSet";
        oFCKeditor.Height = 300;
        oFCKeditor.Width = 700;
        oFCKeditor.ReplaceTextarea();

答案 1 :(得分:1)

您需要了解的所有信息均可在以下网址找到:http://docs.cksource.com/CKEditor_3.x/Developers_Guide/Toolbar

PS:Google is your friend