|
客户要求不显示自定义参数,隐藏后,窗体如果按默认显示的话,显得很空,但是在文件/UI2/system/components/justep/excel/importExcel.js
中修改了创建dialog的函数时,不起作用,好像运行时不进入这个文件,我是在这里改的
getConfigDlg : function() {
// 不存在就创建一个
alert("exceldlg");
if (!this.configDlg) {
this.configDlg = new WindowDialog({
showTitle : true,
title: justep.Message.getMessage(justep.Message.JUSTEP231101),
width: "200px",
height: "200px",
status: 'normal',
src : importConfigURL,
parentNode : this.getModel().getRootNode()
});
this.configDlg.on("onReceive", function(event) {
this.uploader.submit();
}, this);
}
return this.configDlg;
},
请问我应该在哪里修改呢
|
|