JSF与FCKeditor整合问题。

在JSF 页面中引用fckeditor编辑器,JSF自带有一个组件,由于项目需要,需要添加自己的组件,弹出一个对话框。
在editor中,谈出对话框是这样的 :

image.prototype.Execute = function(){
var returnValue="";
returnValue=window.showModalDialog("http://localhost:8080/admin-webapp/cms/content-editor-image.iface",window,"dialogWidth:820px;dialogHeight:410px;help:no;maximize:no;minimize:no;scroll:aotu;status:no;resizable:no");
if(returnValue!="" && returnValue!=null){
var html="<img src='"+returnValue+"' style='width:200px; heigth:200px; margin-top: 10px; margin-bottom: 10px' border='0'>";

FCK.InsertHtml(html);
}
};
通过ModalDialog回传值,来插入到editor中。
现在出现的问题是: 当点击了自定义组件按钮后,弹出content-editor-image.iface 窗口,关闭子窗口后,JSF 父窗口不能操作了,只有编辑器那部分能够操作。

有人遇到同样问题吗 ?



你可能感兴趣的:(html,cms,JSF,fckeditor,prototype)