API 관리
- 표준메시지 내용이 화면 규격을 지키도록 줄임말 처리 - 복제시 complete 후 버튼 disable 원복 공통 - 중요 메뉴에 대해 삭제시 confirm 메시지 출력
This commit is contained in:
@@ -154,6 +154,10 @@ $(document).ready(function() {
|
||||
});
|
||||
});
|
||||
$("#btn_delete").click(function(){
|
||||
if(!confirm("삭제하시겠습니까?")){
|
||||
return;
|
||||
}
|
||||
|
||||
var disabled = $('#ajaxForm').find(':input:disabled').removeAttr('disabled');
|
||||
var postData = $('#ajaxForm').serializeArray();
|
||||
disabled.attr('disabled','disabled');
|
||||
|
||||
Reference in New Issue
Block a user