项目中用的ext,要做一个最最最基本的点击弹出一个子窗口的功能,就按主流的步骤做了,new window也能弹出来,也有内容(如图),但是问题出现了,点击combobox,或是日历控件,这个子窗口就会立马一片空白。其他文本输入框或空白点击不会出现此情况。哎,郁闷中,help啊,对了把子窗口拖动一下空白就会消失,窗口也能点了。就第一次加载有如上问题。
代码:[code="java"]var url = "analysisFactorAction!updateFactorByParam?factorCode="+factorCode;
fac_info_window = new Ext.Window({
title: "详细信息" ,
width: 1000,
height:500,
resizable:false,
modal:true,
contentEl : Ext.DomHelper.append(document.body, {
tag : 'iframe',
style : "border 0px none;scrollbar:true",
src : url,
height : "98%",
width : "98%"
})
//html: "<IFrame src='"+url+"' frameborder=0 width=100% height=100%></IFrame>"
});
fac_info_window.show();
蓝山帝景
相关分类