|
发表于 2017-3-28 10:44:43
|
显示全部楼层
1.在processDialog.js中加如下引用var WindowDialog = require("$UI/system/components/justep/windowDialog/windowDialog");
2.把processDialog.js中createExecutorDialog方法中的
- return new OrgDialog({
- cacheKind : cacheKind,
- title : new justep.Message(justep.Message.JUSTEP230055).getMessage(),
- showTitle : true,
- multiSelection : true,
- parentNode : this.getElementByXid("dialogs")
- });
复制代码
改为:
- return new WindowDialog({
- title : new justep.Message(justep.Message.JUSTEP230055).getMessage(),
- showTitle : true,
- multiSelection : true,
- parentNode : this.getElementByXid("dialogs"),
- status:"normal"
-
- });
复制代码 |
|