zk 的 ckeditor 跳过大小

ckeditor skip size for zk

我想在 ZK 中使用组件 ckeditor。 该组件正确可见,但不考虑 width/height 组。

我在 zul 上使用 ckeditor 重现了这个问题,如下所示:

<zk>
    <window id="myId">
        <div width="500px" height="500px" style="background:red">
            <ckeditor id="myEditor" width="500px" height="300px"
                        customConfigurationsPath="/j/ckeditor_cfg_ro.js" toolbar="MyToolbar">
            </ckeditor>
        </div>
    </window>   
</zk>

当我打开它时,ckeditor 比预期的要小... ckeditor 的版本是 3.6.4.

如何以正确的尺寸显示我的编辑器?

ckeditor 的显示方式如下:

另一个信息: 工具栏(在 "js" 目录的文件 ckeditor_cfg.js 上配置)未显示,使用 firebug 我收到以下错误:

TypeError: jq(...).ckeditor 不是函数 在线:ckez.wpd(第 42564 行)--> jq(this.$n('cnt')).ckeditor(function(){

实际上,在 fiddle 中进行了一些测试后,高度确实有效。
问题是为 ckeditor 的 textbox 设置了高度,不要看 header.

您始终可以为其创建错误报告。

Check this fiddle for it.