CKEditor 组件在 Internet Explorer 10 中不起作用。
见http://dev.ckeditor.com/ticket/9741
有没有人有任何建议如何做任何解决方法?或者有人知道他们什么时候会修复它?
在此先感谢,吉克拉
CKEditor 组件在 Internet Explorer 10 中不起作用。
见http://dev.ckeditor.com/ticket/9741
有没有人有任何建议如何做任何解决方法?或者有人知道他们什么时候会修复它?
在此先感谢,吉克拉
首先,IBM Domino 9 和 IBM XWork Server 9 使用 CKEditor 3.6.3,修复了 IE10 的这个 bug。
对于 8.5.3,我使用以下命令使 IE10 作为 IE9 运行,以便 CKEditor 工作:
<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>