- 같은 ID 로 DEL -> INSERT 시 충돌대응

- API 20건 조회 -> 전체조회
- API LIST 저장시 요청/완료 알 수 있도록 버튼 제어
This commit is contained in:
daekuk
2025-12-30 10:36:27 +09:00
parent 08c6bb44d5
commit ba6dff6f9e
3 changed files with 22 additions and 6 deletions
@@ -151,6 +151,10 @@ function saveApiGridData(scopeId, returnUrl) {
type : "POST",
url:mapping_url,
data: postData,
beforeSend: function() {
$("[id^='btn_']").prop("disabled", true);
$("#btn_modify").text("처리중 . . . . .");
},
success:function(args){
alert("저장 되었습니다.");
@@ -158,7 +162,11 @@ function saveApiGridData(scopeId, returnUrl) {
},
error:function(e){
alert(e.responseText);
}
},
complete: function() {
$("[id^='btn_']").prop("disabled", false);
$("#btn_modify").text("수정");
}
});
}