CKeditor 默认选择图像对话框中的上传选项卡
有没有办法修改 CKEditor 的图像对话框以默认显示上传选项卡而不是图像信息选项卡?
我尝试通过在对话框的加载中添加一行代码来实现此目的:
onLoad: function() {
this.getDialog().selectPage('Upload');
}
这似乎工作正常,我可以将图像上传到服务器,但是一旦我点击“确定”按钮,我就会获得许可否认错误。
我也按照CKSource描述的方式尝试过,但这给了我一个例外,因为它重写 onShow 方法。
Is there a way to modify the image dialog of CKEditor to display the upload tab by default instead of the Image info tab?
I've tried doing this by adding a line of code to the onload of the dialog:
onLoad: function() {
this.getDialog().selectPage('Upload');
}
this seems to work fine, I'm able to upload the image to the server, but as soon as I hit the ok button I get a permission denied error.
I've also tried it the way CKSource describes but this gives me an exception since it overrides the onShow method.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
通过将
this.selectPage('Upload');
添加到图像插件的 onShow 函数末尾来修复此问题Fixed this by adding
this.selectPage('Upload');
to the end of the onShow function of the image plugin正如您所注意到的,文档中的示例已损坏,因为图像插件已经具有 onShow() 方法。
诀窍是像这样链接这些方法:
As you noticed, the example in the docs is broken because the Image plugin already has an onShow() method.
The trick is to chain the methods like this:
本文档介绍了如何在 ckeditor 配置中默认设置对话框选项卡:
http://docs .cksource.com/CKEditor_3.x/Howto/Default_Dialog_Tab
This doc explains how to set a dialog tab by default in your ckeditor config:
http://docs.cksource.com/CKEditor_3.x/Howto/Default_Dialog_Tab
可以使用以下脚本。
Can user following script.