CKEditor 3.6.2 version issue in IE 10

邮差的信 提交于 2019-12-12 00:06:11

问题


CKEditor component doesn't work in Internet Explorer 10.

See http://dev.ckeditor.com/ticket/9741

Does anyone have any advice how to do any workaround? Or do someone know when they will fix it?

Thanks in advance, JiKra


回答1:


First of all, IBM Domino 9 and IBM XWork Server 9 use CKEditor 3.6.3 where this bug with IE10 is fixed.

For 8.5.3 I am using the following to make IE10 run as IE9 in order for the CKEditor to work:

<xp:this.beforeRenderResponse><![CDATA[#{javascript:
   if (context.getUserAgent().isIE()) {
     var response = facesContext.getExternalContext().getResponse();
     // Use IE9 mode because of CKEditor bugs with IE10
     response.setHeader("X-UA-Compatible", "IE=9");
   }
}]]></xp:this.beforeRenderResponse>


来源:https://stackoverflow.com/questions/16202727/ckeditor-3-6-2-version-issue-in-ie-10

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!