ColumnDialog.js 495 B

12345678910111213141516171819
  1. function ColumnDialog(conf){
  2. if(!conf) conf={};
  3. var url=__ctx + '/platform/form/bpmFormTable/columnDialog.ht?isAdd=' ;
  4. url+=conf.isAdd?"1":"0";
  5. url+="&isMain="+conf.isMain;
  6. var winArgs="dialogWidth:700px;dialogHeight:540px;help:0;status:0;scroll:1;center:1";
  7. url=url.getNewUrl();
  8. //var rtn=window.showModalDialog(url,conf,winArgs);
  9. /*KILLDIALOG*/
  10. DialogUtil.open({
  11. height:540,
  12. width: 700,
  13. title : '添加列',
  14. url: url,
  15. isResize: true,
  16. //自定义参数
  17. conf: conf
  18. });
  19. }