如何在角度2 RC1版本中为Ckeditor添加自定义按钮

时间:2016-07-07 12:04:55

标签: angular ckeditor

我可以使用以下代码在Angular 2 RC1中使用Ckeditor:

`http://plnkr.co/edit/X5whPqDhLS6RjTR2N8hT?p=preview

但我不知道如何在工具栏中添加自定义按钮。谢谢你的帮助。

1 个答案:

答案 0 :(得分:0)

CKEditor提供了一个API来完成它,只需按照本教程: http://docs.ckeditor.com/#!/guide/widget_sdk_tutorial_1

要直接在Typescript中使用它,您需要使用 TSD 安装CKEditor定义文件:

npm i tsd -g

然后:

tsd install ckeditor --save

不要忘记在编译周期中添加d.ts文件,通常在app入口点内:

/// <reference path="../typings/ckeditor/ckeditor.d.ts" />