|
发表于 2018-11-23 15:17:20
|
显示全部楼层
/UI2/system/service/process/dialog/processDialog.js中
- Model.prototype.createExecutorDialog = function(){
- return new OrgDialog({
- cacheKind: cacheKind,
- title: new justep.Message(justep.Message.JUSTEP230055).getMessage(),
- showTitle: true,
- multiSelection: true,
- parentNode: this.getElementByXid("dialogs")
- });
- };
复制代码
改为:
- Model.prototype.createExecutorDialog = function(){
- return new OrgDialog({
- cacheKind: cacheKind,
- title: new justep.Message(justep.Message.JUSTEP230055).getMessage(),
- showTitle: true,
- multiSelection: true,
- forceRefreshOnOpen:true,
- parentNode: this.getElementByXid("dialogs")
- });
- };
复制代码 |
|