다이얼로그 창 z-index수정 처리 추가

main
이범준 10 months ago
parent fe6e4e00b9
commit d328fd34ec

@ -805,7 +805,9 @@ $(document).ready(function(){
if((typeof resp) != "string"){ if((typeof resp) != "string"){
dialog.alert({ dialog.alert({
content : resp.message, content : resp.message,
init : function(){ focusClose(); } init : function(){
focusClose();
}
}); });
return; return;
} }
@ -849,7 +851,9 @@ $(document).ready(function(){
if((typeof resp) != "string"){ if((typeof resp) != "string"){
dialog.alert({ dialog.alert({
content : resp.message, content : resp.message,
init : function(){ focusClose(); } init : function(){
focusClose();
}
}); });
return; return;
} }

@ -75,7 +75,10 @@ $(document).ready(function(){
if (resp.saved) { if (resp.saved) {
dialog.alert({ dialog.alert({
content : "저장됐습니다.", content : "저장됐습니다.",
init : function(){ focusClose(); } init : function(){
setDialogZindex();
focusClose();
}
}); });
dialog.close("overTimeProcessDialog--${openerPageName}"); dialog.close("overTimeProcessDialog--${openerPageName}");
@ -94,7 +97,10 @@ $(document).ready(function(){
if(crdnInfo.OVTIME_YN == "Y"){ if(crdnInfo.OVTIME_YN == "Y"){
dialog.alert({ dialog.alert({
content : "이미 가산 처리된 자료입니다.", content : "이미 가산 처리된 자료입니다.",
init : function(){ focusClose(); } init : function(){
setDialogZindex();
focusClose();
}
}); });
return; return;
} }
@ -104,7 +110,10 @@ $(document).ready(function(){
if(crdnInfo.OVTIME_PRTTN_YN == "Y"){ if(crdnInfo.OVTIME_PRTTN_YN == "Y"){
dialog.alert({ dialog.alert({
content : "이미 감액 처리된 자료입니다.", content : "이미 감액 처리된 자료입니다.",
init : function(){ focusClose(); } init : function(){
setDialogZindex();
focusClose();
}
}); });
return; return;
} }
@ -121,7 +130,10 @@ $(document).ready(function(){
if(crdnInfo.OVTIME_YN != "Y" && crdnInfo.OVTIME_PRTTN_YN != "Y"){ if(crdnInfo.OVTIME_YN != "Y" && crdnInfo.OVTIME_PRTTN_YN != "Y"){
dialog.alert({ dialog.alert({
content: "2시간 초과 처리되지 않은 자료입니다.", content: "2시간 초과 처리되지 않은 자료입니다.",
init : function() { focusClose(); } init : function() {
setDialogZindex();
focusClose();
}
}); });
return; return;
} }

@ -321,14 +321,18 @@ $(document).ready(function(){
if(!$P.crdnControl.getCurrent()) { if(!$P.crdnControl.getCurrent()) {
dialog.alert({ dialog.alert({
content : "선택된 자료가 없습니다.", content : "선택된 자료가 없습니다.",
init : function(){ focusClose(); } init : function(){
focusClose();
}
}); });
return; return;
}; };
dialog.alert({ dialog.alert({
content : "현 자료를 장애차량 확인된 자료로 변경하시겠습니까?", content : "현 자료를 장애차량 확인된 자료로 변경하시겠습니까?",
init : function(){ focusOK(); }, init : function(){
focusOK();
},
onOK:() => { onOK:() => {
$P.crdnControl.save({ 'crdnId' : $P.crdnControl.getCurrent()["CRDN_ID"] }); $P.crdnControl.save({ 'crdnId' : $P.crdnControl.getCurrent()["CRDN_ID"] });
} }

@ -249,7 +249,10 @@ $(document).ready(function(){
} else { } else {
dialog.alert({ dialog.alert({
content : "파일 조회에 실패하였습니다.", content : "파일 조회에 실패하였습니다.",
init : function(){ focusClose(); } init : function(){
setDialogZindex();
focusClose();
}
}); });
} }
} }
@ -263,7 +266,10 @@ $(document).ready(function(){
if($("#uploadFiles--${pageName}").val() == ""){ if($("#uploadFiles--${pageName}").val() == ""){
dialog.alert({ dialog.alert({
content : "파일이 없습니다.", content : "파일이 없습니다.",
init : function(){ focusClose(); } init : function(){
setDialogZindex();
focusClose();
}
}); });
return; return;
} }
@ -282,7 +288,10 @@ $(document).ready(function(){
} else { } else {
dialog.alert({ dialog.alert({
content : "파일 업로드에 실패하였습니다.", content : "파일 업로드에 실패하였습니다.",
init : function(){ focusClose(); } init : function(){
setDialogZindex();
focusClose();
}
}); });
return; return;
} }
@ -371,7 +380,10 @@ $(document).ready(function(){
if($.isEmptyObject($P.tempGroup)){ if($.isEmptyObject($P.tempGroup)){
dialog.alert({ dialog.alert({
content : "모든 자료가 처리 완료되었습니다.", content : "모든 자료가 처리 완료되었습니다.",
init : function(){ focusClose(); } init : function(){
setDialogZindex();
focusClose();
}
}); });
return; return;
} }

@ -434,7 +434,10 @@ $(document).ready(function(){
if (resp.saved) { if (resp.saved) {
dialog.alert({ dialog.alert({
content : "저장됐습니다.", content : "저장됐습니다.",
init : function(){ focusClose(); } init : function(){
setDialogZindex();
focusClose();
}
}); });
dialog.close("manualdialog"); dialog.close("manualdialog");
} }
@ -480,7 +483,10 @@ $(document).ready(function(){
if(rtpyrNm.value == ""){ if(rtpyrNm.value == ""){
dialog.alert({ dialog.alert({
content:"계고 처리를 하기 위해선 소유주정보가 입력되어야 합니다.", content:"계고 처리를 하기 위해선 소유주정보가 입력되어야 합니다.",
init : function(){ focusClose(); }, init : function(){
setDialogZindex();
focusClose();
},
onClose:function(){rtpyrNm.focus();} onClose:function(){rtpyrNm.focus();}
}); });
return; return;
@ -558,7 +564,10 @@ $(document).ready(function(){
if(crdnYmd == ""){ if(crdnYmd == ""){
dialog.alert({ dialog.alert({
content : "단속일자를 입력하세요.", content : "단속일자를 입력하세요.",
init : function(){ focusClose(); }, init : function(){
setDialogZindex();
focusClose();
},
onClose : function(){ $("#crdnYmd--${pageName}").focus(); } onClose : function(){ $("#crdnYmd--${pageName}").focus(); }
}); });
@ -567,7 +576,10 @@ $(document).ready(function(){
if(vhrno == ""){ if(vhrno == ""){
dialog.alert({ dialog.alert({
content:"차량번호를 입력하세요.", content:"차량번호를 입력하세요.",
init : function(){ focusClose(); }, init : function(){
setDialogZindex();
focusClose();
},
onClose:function(){ $(vhrnoEl).focus(); } onClose:function(){ $(vhrnoEl).focus(); }
}); });
return; return;
@ -584,7 +596,10 @@ $(document).ready(function(){
if(!resp.found){ if(!resp.found){
dialog.alert({ dialog.alert({
content : "차량정보가 없습니다.", content : "차량정보가 없습니다.",
init : function(){ focusClose(); } init : function(){
setDialogZindex();
focusClose();
}
}); });
$("#rtpyrId--${pageName}").val(""); $("#rtpyrId--${pageName}").val("");
$("#rtpyrNm--${pageName}").val(""); $("#rtpyrNm--${pageName}").val("");

@ -334,7 +334,10 @@
dialog.alert({ dialog.alert({
content : showMessage, content : showMessage,
init : function(){ focusClose(); } init : function(){
setDialogZindex();
focusClose();
}
}); });
if (resp.saved) { if (resp.saved) {
@ -385,7 +388,10 @@
if (!resp.found) { if (!resp.found) {
dialog.alert({ dialog.alert({
content : "차량 정보가 없습니다.", content : "차량 정보가 없습니다.",
init : function(){ focusClose(); } init : function(){
setDialogZindex();
focusClose();
}
}); });
return; return;
} }
@ -459,7 +465,10 @@
if (crdnYmd == "") { if (crdnYmd == "") {
dialog.alert({ dialog.alert({
content : "단속일자를 입력하세요.", content : "단속일자를 입력하세요.",
init : function(){ focusClose(); }, init : function(){
setDialogZindex();
focusClose();
},
onClose : function() { $("#crdnYmd--${pageName}").focus(); } onClose : function() { $("#crdnYmd--${pageName}").focus(); }
}); });
return; return;
@ -467,7 +476,10 @@
if (vhrno == "") { if (vhrno == "") {
dialog.alert({ dialog.alert({
content : "차량번호를 입력하세요.", content : "차량번호를 입력하세요.",
init : function(){ focusClose(); }, init : function(){
setDialogZindex();
focusClose();
},
onClose : function() { $("#vhrno--${pageName}").focus(); } onClose : function() { $("#vhrno--${pageName}").focus(); }
}); });
@ -497,7 +509,10 @@
dialog.alert({ dialog.alert({
content : "현재 " + ${pageName}Control.prefixName + " 정보를 저장하시겠습니까?", content : "현재 " + ${pageName}Control.prefixName + " 정보를 저장하시겠습니까?",
init : function(){ focusOK(); }, init : function(){
setDialogZindex();
focusOK();
},
onOK : () => { onOK : () => {
${pageName}Control.save(${pageName}Fields.get()); ${pageName}Control.save(${pageName}Fields.get());
} }

@ -97,7 +97,10 @@
dialog.alert({ dialog.alert({
content : showMessage, content : showMessage,
init : function(){ focusClose(); } init : function(){
setDialogZindex();
focusClose();
}
}); });
if (resp.saved) { if (resp.saved) {
@ -139,7 +142,9 @@
dialog.alert({ dialog.alert({
content : "현재 " + ${pageName}Control.prefixName + " 정보를 저장하시겠습니까?", content : "현재 " + ${pageName}Control.prefixName + " 정보를 저장하시겠습니까?",
init : function() { focusOK(); }, init : function() {
focusOK();
},
onOK : () => { onOK : () => {
${pageName}Control.save(${pageName}Fields.get()); ${pageName}Control.save(${pageName}Fields.get());
} }

@ -333,7 +333,9 @@ $(document).ready(function(){
if(data.DEL_YN == "Y"){ if(data.DEL_YN == "Y"){
dialog.alert({ dialog.alert({
content : "삭제된 자료입니다.", content : "삭제된 자료입니다.",
init : function() { focusClose(); } init : function() {
focusClose();
}
}); });
return; return;
} }

@ -134,7 +134,10 @@ $(document).ready(function(){
if (resp.saved) { if (resp.saved) {
dialog.alert({ dialog.alert({
content : "저장됐습니다.", content : "저장됐습니다.",
init : function() { focusClose(); } init : function() {
setDialogZindex();
focusClose();
}
}); });
dialog.close("exmptnvhcldialog"); dialog.close("exmptnvhcldialog");
$P.provided.refreshList(); $P.provided.refreshList();

@ -531,7 +531,9 @@ $(document).ready(function(){
var curRcptYmd = cur["CVLCPT_RCPT_YMD"]; var curRcptYmd = cur["CVLCPT_RCPT_YMD"];
dialog.alert({ dialog.alert({
content : "접수일 : "+dateFormat.format(curRcptYmd)+"<br/>모든 자료를 제거하시겠습니까?", content : "접수일 : "+dateFormat.format(curRcptYmd)+"<br/>모든 자료를 제거하시겠습니까?",
init : function() { focusOK(); }, init : function() {
focusOK();
},
onOK : () => { onOK : () => {
$P.fnRemove(curRcptYmd); $P.fnRemove(curRcptYmd);
} }

@ -455,7 +455,10 @@ $(document).ready(function(){
dialog.alert({ dialog.alert({
content : "저장됐습니다.", content : "저장됐습니다.",
init : function() { focusClose(); } init : function() {
setDialogZindex();
focusClose();
}
}); });
if($("#levyExcldialog--${pageName}").length > 0){ if($("#levyExcldialog--${pageName}").length > 0){
@ -494,9 +497,8 @@ $(document).ready(function(){
dialog.alert({ dialog.alert({
content:"계고 처리를 하기 위해선 소유주정보가 입력되어야 합니다.", content:"계고 처리를 하기 위해선 소유주정보가 입력되어야 합니다.",
init : function() { init : function() {
setZindex(); setDialogZindex();
focusClose(); focusClose();
}, },
onClose:function(){rtpyrNm.focus();} onClose:function(){rtpyrNm.focus();}
}); });
@ -523,7 +525,9 @@ $(document).ready(function(){
title : "부과제외 정보", title : "부과제외 정보",
content : resp, content : resp,
size : "md", size : "md",
init : () => {}, init : () => {
setDialogZindex();
},
onClose : () => {} onClose : () => {}
}); });
} }
@ -598,7 +602,10 @@ $(document).ready(function(){
if (resp.saved) { if (resp.saved) {
dialog.alert({ dialog.alert({
content : "복사 자료가 생성되었습니다.", content : "복사 자료가 생성되었습니다.",
init : function() { focusClose(); } init : function() {
setDialogZindex();
focusClose();
}
}); });
$("#refreshEnd--${pageName}").attr("data-cursor-key", crdnId); $("#refreshEnd--${pageName}").attr("data-cursor-key", crdnId);
@ -750,7 +757,10 @@ $(document).ready(function(){
if(vhrno.value == ""){ if(vhrno.value == ""){
dialog.alert({ dialog.alert({
content:"수용 처리를 하기 위해선 차량번호가 입력되어야 합니다.", content:"수용 처리를 하기 위해선 차량번호가 입력되어야 합니다.",
init : function() { focusClose(); }, init : function() {
setDialogZindex();
focusClose();
},
onClose:function(){vhrno.focus();} onClose:function(){vhrno.focus();}
}); });
return; return;
@ -759,7 +769,10 @@ $(document).ready(function(){
if(rtpyrNm.value == ""){ if(rtpyrNm.value == ""){
dialog.alert({ dialog.alert({
content:"수용 처리를 하기 위해선 소유주정보가 입력되어야 합니다.", content:"수용 처리를 하기 위해선 소유주정보가 입력되어야 합니다.",
init : function() { focusClose(); }, init : function() {
setDialogZindex();
focusClose();
},
onClose:function(){rtpyrNm.focus();} onClose:function(){rtpyrNm.focus();}
}); });
return; return;
@ -789,7 +802,10 @@ $(document).ready(function(){
dialog.alert({ dialog.alert({
content : message, content : message,
init : function() { focusClose(); } init : function() {
setDialogZindex();
focusClose();
}
}); });
@ -855,7 +871,10 @@ $(document).ready(function(){
if(crdnYmd == ""){ if(crdnYmd == ""){
dialog.alert({ dialog.alert({
content:"단속일자를 입력하세요.", content:"단속일자를 입력하세요.",
init : function() { focusClose(); }, init : function() {
setDialogZindex();
focusClose();
},
onClose:function(){ $("#crdnYmd--${pageName}").focus(); } onClose:function(){ $("#crdnYmd--${pageName}").focus(); }
}); });
return; return;
@ -863,7 +882,10 @@ $(document).ready(function(){
if(vhrno == ""){ if(vhrno == ""){
dialog.alert({ dialog.alert({
content:"차량번호를 입력하세요.", content:"차량번호를 입력하세요.",
init : function() { focusClose(); }, init : function() {
setDialogZindex();
focusClose();
},
onClose:function(){ $(vhrnoEl).focus(); } onClose:function(){ $(vhrnoEl).focus(); }
}); });
return; return;
@ -881,7 +903,10 @@ $(document).ready(function(){
if(!resp.found){ if(!resp.found){
dialog.alert({ dialog.alert({
content : "차량 정보가 없습니다.", content : "차량 정보가 없습니다.",
init : function() { focusClose(); } init : function() {
setDialogZindex();
focusClose();
}
}); });
$("#rtpyrId--${pageName}").val(""); $("#rtpyrId--${pageName}").val("");

@ -263,7 +263,9 @@ $(document).ready(function(){
if(resp.saved){ if(resp.saved){
dialog.alert({ dialog.alert({
content : "처리되었습니다.", content : "처리되었습니다.",
init : function() { focusClose(); } init : function() {
focusClose();
}
}); });
$P.refreshCrdnList(); $P.refreshCrdnList();
} }
@ -555,7 +557,9 @@ $(document).ready(function(){
dialog.alert({ dialog.alert({
content : "선택된 "+count+"건의 자료를 답변등록을 실행하시겠습니까?", content : "선택된 "+count+"건의 자료를 답변등록을 실행하시겠습니까?",
init : function() { focusOK(); }, init : function() {
focusOK();
},
onOK : () => { onOK : () => {
$P.crdnControl.save('answerExecute'); $P.crdnControl.save('answerExecute');
} }
@ -568,7 +572,9 @@ $(document).ready(function(){
dialog.alert({ dialog.alert({
content : "선택된 "+count+"건의 자료를 답변완료 상태로 변경하시겠습니까?", content : "선택된 "+count+"건의 자료를 답변완료 상태로 변경하시겠습니까?",
init : function() { focusOK(); }, init : function() {
focusOK();
},
onOK : () => { onOK : () => {
$P.crdnControl.save('answerComplete'); $P.crdnControl.save('answerComplete');
} }
@ -591,7 +597,9 @@ $(document).ready(function(){
if(keys.length == 0){ if(keys.length == 0){
dialog.alert({ dialog.alert({
content : "표지조회는 부과대상자료만 가능합니다.<br/>선택된 자료 중에 부과대상자료가 없습니다.", content : "표지조회는 부과대상자료만 가능합니다.<br/>선택된 자료 중에 부과대상자료가 없습니다.",
init : function() { focusClose(); } init : function() {
focusClose();
}
}); });
return; return;
} }
@ -603,7 +611,10 @@ $(document).ready(function(){
dialog.alert({ dialog.alert({
content : message, content : message,
init : function() { focusOK(); }, init : function() {
setDialogZindex();
focusOK();
},
onOK : () => { onOK : () => {
ajax.get({ ajax.get({
url : wctx.url("/DPV/cvlc/cvlc02/040/update.do"), url : wctx.url("/DPV/cvlc/cvlc02/040/update.do"),
@ -613,7 +624,10 @@ $(document).ready(function(){
success : resp => { success : resp => {
dialog.alert({ dialog.alert({
content : "표지정보조회가 실행되었습니다.", content : "표지정보조회가 실행되었습니다.",
init : function() { focusClose(); } init : function() {
setDialogZindex();
focusClose();
}
}); });
$P.refreshCrdnList(); $P.refreshCrdnList();

@ -122,7 +122,10 @@ $(document).ready(function() {
if (resp.saved) { if (resp.saved) {
dialog.alert({ dialog.alert({
content : "표지정보조회가 실행되었습니다.", content : "표지정보조회가 실행되었습니다.",
init : function() { focusClose(); } init : function() {
setDialogZindex();
focusClose();
}
}); });
} }
} }

@ -382,14 +382,18 @@ $(document).ready(function(){
if(indivIds.length == 0){ if(indivIds.length == 0){
dialog.alert({ dialog.alert({
content : "요청 완료자료가 없습니다.", content : "요청 완료자료가 없습니다.",
init : function() { focusClose(); } init : function() {
focusClose();
}
}); });
return; return;
} }
dialog.alert({ dialog.alert({
content : "완료된 자료를 모두 삭제하시겠습니까?", content : "완료된 자료를 모두 삭제하시겠습니까?",
init : function() { focusOK(); }, init : function() {
focusOK();
},
onOK : () => { onOK : () => {
$P.fnRemove(indivIds); $P.fnRemove(indivIds);
} }

@ -283,7 +283,9 @@ $(document).ready(function(){
dialog.alert({ dialog.alert({
content : "저장하시겠습니까?", content : "저장하시겠습니까?",
init : function() { focusOK(); }, init : function() {
focusOK();
},
onOK: () => { onOK: () => {
ajax.get({ ajax.get({

@ -221,7 +221,11 @@ function fnOpenChangePassword(){
function showHelp(){ function showHelp(){
dialog.alert({ dialog.alert({
content: '070-4490-74XX', content: '070-4490-74XX',
timeout: 0 timeout: 0,
init : function() {
setDialogZindex();
focusClose();
},
}); });
} }

@ -116,12 +116,22 @@ function login() {
success:function(resp) { success:function(resp) {
if (resp.authenticated) { if (resp.authenticated) {
if (resp.message) if (resp.message)
dialog.alert(resp.message); dialog.alert({
content : resp.message,
init : function() {
setDialogZindex();
focusClose();
},
});
wctx.home(); wctx.home();
} else { } else {
dialog.alert({ dialog.alert({
content:resp.reason, content:resp.reason,
init : function() {
setDialogZindex();
focusClose();
},
onClose:() => $("#userId").focus() onClose:() => $("#userId").focus()
}); });
} }

@ -1,7 +1,7 @@
/************************************************************************** /**************************************************************************
* 모달창 z-index 초기화 * 모달창 z-index 초기화
**************************************************************************/ **************************************************************************/
function setZindex(){ function setDialogZindex(){
var parentDialog = getLastOpenDialog(); var parentDialog = getLastOpenDialog();
var childDialog = getLastDialog(); var childDialog = getLastDialog();

Loading…
Cancel
Save