主题: kindeditor 和 jquery easyui不兼容的问题
作者: 舍甫琴科, 发布日期: 2013-05-17 13:42:57, 浏览数: 9496

KindEditor 和 jQuery-easyui 插件有冲突

浏览器版本:
chrome firefox
KindEditor版本:
4.1.7
BUG再现步骤:
1. 在 jQuery-easyui 的tabs里加入

再 文本区

<textarea name="xxxxxxxxxxxxxxxxxxx"   style="width:80px; height:300px;">KindEditor</textarea>

后面加上

var editor1 = KindEditor.create('textarea[name="xxxxxxxxxxxxxxxxxxx"]', {
  allowFileManager : true
 });

会出现 编辑器 但是无法编辑

切换到html格式可以编辑 但是又切回去的时候 报这个错误

Uncaught TypeError: Cannot call method 'getSelection' of undefined

好像 easyui也有这个函数

是不是这个冲突引起的 ?

而且如果加在 KindEditor.ready(function(K) { 里面 根本不会走进去

IE下正常 
期望结果:

因为 目前大多数公司 都是用 jQuery-easyui 做ui控件

而且 我们主张客户用 chrome 但是 因为要用到编辑器

感觉KindEditor非常棒 所以希望 KindEditor 能帮忙解决下

和 easyui冲突的问题

 

能否告诉我怎么改源码 thanks!

作者: Roddy, 发布日期: 2013-05-17 16:15:57
看这里,在弹出框或tab里显示调用方式有要求的,http://www.kindsoft.net/ke4/examples/jquery-ui.html
回复
作者: xixi, 发布日期: 2014-01-03 16:11:24
    是怎么解决的?  创建 就没有创建成功 导致后面的 编辑器不可以编辑 无法获取到焦点。
回复
作者: mzp, 发布日期: 2014-08-01 15:06:18

我也碰到了这个问题,要在dialog 开打之后,在加载,即 onOpen事件, 关闭后注销

onOpen: function (event, ui) {
// 打开Dialog后创建编辑器
KindEditor.create('#editor_content', {
resizeType : 1,
                                allowFileManager: true,
                                uploadJson: '../../KindEditor/asp.net/upload_json.ashx',
                                fileManagerJson: '../../KindEditor/asp.net/file_manager_json.ashx'
});
},
                        onBeforeClose: function (event, ui) {
// 关闭Dialog前移除编辑器
   KindEditor.remove('#editor_content');
},


回复
发表新帖 发表回复