이지우 - 조사관 배정 시 더블클릭 방지
This commit is contained in:
parent
c26b8f8f17
commit
56a93c46d4
@ -109,10 +109,12 @@ $(document).ready(function(){
|
|||||||
});
|
});
|
||||||
|
|
||||||
$("#deptConfirm").click(function(){
|
$("#deptConfirm").click(function(){
|
||||||
|
$(this).prop('disabled', true);
|
||||||
|
|
||||||
if($("#caseGubun").val() == ""){
|
if($("#caseGubun").val() == ""){
|
||||||
alert("조정유형을 선택해 주세요");
|
alert("조정유형을 선택해 주세요");
|
||||||
$("#caseGubun").focus();
|
$("#caseGubun").focus();
|
||||||
|
$(this).prop('disabled', false);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -125,6 +127,7 @@ $(document).ready(function(){
|
|||||||
if($("#presidentAssign").val() == ""){
|
if($("#presidentAssign").val() == ""){
|
||||||
alert("부서명을 선택 해 주세요.");
|
alert("부서명을 선택 해 주세요.");
|
||||||
$("#presidentAssign").focus();
|
$("#presidentAssign").focus();
|
||||||
|
$(this).prop('disabled', false);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -141,10 +144,12 @@ $(document).ready(function(){
|
|||||||
});
|
});
|
||||||
|
|
||||||
$("#deptConfirm2").click(function(){
|
$("#deptConfirm2").click(function(){
|
||||||
|
$(this).prop('disabled', true);
|
||||||
|
|
||||||
if($("#caseGubun").val() == ""){
|
if($("#caseGubun").val() == ""){
|
||||||
alert("조정유형을 선택해 주세요");
|
alert("조정유형을 선택해 주세요");
|
||||||
$("#caseGubun").focus();
|
$("#caseGubun").focus();
|
||||||
|
$(this).prop('disabled', false);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -163,6 +168,7 @@ $(document).ready(function(){
|
|||||||
if($("#presidentAssign").val() == ""){
|
if($("#presidentAssign").val() == ""){
|
||||||
alert("부서명을 선택 해 주세요.");
|
alert("부서명을 선택 해 주세요.");
|
||||||
$("#presidentAssign").focus();
|
$("#presidentAssign").focus();
|
||||||
|
$(this).prop('disabled', false);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -179,10 +185,12 @@ $(document).ready(function(){
|
|||||||
});
|
});
|
||||||
|
|
||||||
$("#deptConfirm3").click(function(){
|
$("#deptConfirm3").click(function(){
|
||||||
|
$(this).prop('disabled', true);
|
||||||
|
|
||||||
if($("#examinerAssign").val() == ""){
|
if($("#examinerAssign").val() == ""){
|
||||||
alert("담당자를 선택 해 주세요.");
|
alert("담당자를 선택 해 주세요.");
|
||||||
$("#examinerAssign").focus();
|
$("#examinerAssign").focus();
|
||||||
|
$(this).prop('disabled', false);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -224,10 +232,11 @@ $(document).ready(function(){
|
|||||||
});
|
});
|
||||||
|
|
||||||
$("#deptConfirm4").click(function(){
|
$("#deptConfirm4").click(function(){
|
||||||
|
$(this).prop('disabled', true);
|
||||||
if($("#caseGubun").val() == ""){
|
if($("#caseGubun").val() == ""){
|
||||||
alert("조정유형을 선택해 주세요");
|
alert("조정유형을 선택해 주세요");
|
||||||
$("#caseGubun").focus();
|
$("#caseGubun").focus();
|
||||||
|
$(this).prop('disabled', false);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -246,6 +255,7 @@ $(document).ready(function(){
|
|||||||
if($("#presidentAssign").val() == ""){
|
if($("#presidentAssign").val() == ""){
|
||||||
alert("부서명을 선택 해 주세요.");
|
alert("부서명을 선택 해 주세요.");
|
||||||
$("#presidentAssign").focus();
|
$("#presidentAssign").focus();
|
||||||
|
$(this).prop('disabled', false);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user