Easyui和UEditor使用问题
一,全屏不能正常显示
在easyui和dialog中用UEditor,点击全屏不能正常显示,出现空白等等情况。
经测试发现是因为UEditor的弹出层的z-index比Dialog的低。解决办法:在打开Dialog时,写一个style修改z-index就可以。
$('#Dialog').dialog({
onOpen:function(){
$('.edui-editor').css('z-index', 9999);
},
onMove:function(left,top){
$('.edui-editor').css('z-index', 9999);
},
onResize:function(width, height){
$('.edui-editor').css('z-index', 9999);
}
});

浙公网安备 33010602011771号