|
|
本帖最后由 bess 于 2012-12-12 15:42 编辑
修改\webapps\obpm\portal\default\dynaform\document\content.jsp第320行和321行
function resizeWindow(){
// Resize dialog, set the dialog window size as the body size.
var w = document.body.scrollWidth > 800 ? document.body.scrollWidth:800;
var h = document.body.scrollHeight > 600 ? document.body.scrollHeight + 60:600;
OBPM.dialog.resize(w, h);
}
原先的意思是宽度大于800按800显示,小于800按实际显示。现在改为宽度小于800按800显示。高度同理。 |
|