自定义工具栏位置并自定义ckeditor javascript文件

时间:2019-07-19 05:56:34

标签: ckeditor4.x

我正在使用ckeditor inline,我希望在工具栏加载到特定位置后自定义ckeditor工具栏的顶部和左侧位置。并且我也想更新ckeditor.js并在我的网站中使用,但是当我使用beautifier编辑ckeditor.js时,在我更新并在网站中使用后出现错误。

我曾尝试为ckeditor工具栏设置自定义的顶部和左侧位置,但是由于它来自instanceReady事件,因此再次重置了位置。

               ck = CKEDITOR.inline(editableDivElement[0], {
                removePlugins: 'resize, elementspath',
                extraPlugins: 'ckeditor_wiris, smiley',
                height: 60,
                toolbar: toolbars,
                toolbarLocation: 'top',
                startupFocus: true,
              });


                  ck.on("instanceReady", function (event) {
                    var ckeditorToolBar: any = 
                    document.getElementsByClassName("cke");
                     if (ckeditorToolBar) {
                        ckeditorToolBar[0].style.top ="100px";
                       ckeditorToolBar[0].style.left="100px";
                   });

如果有办法我可以编辑ckeditor.js并在我的网站中使用,并且还可以使用上下左右设置自定义ckeditor工具栏的位置。

0 个答案:

没有答案