|
|
@ -518,12 +518,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
// 삭제 메세지 확인
|
|
|
|
// 삭제 메세지 확인
|
|
|
|
dialog.alert({
|
|
|
|
dialog.alert({
|
|
|
|
content : "선택하신 " + selected.length + "건의 " + $P.control.prefixName + " 정보를 삭제하시겠습니까?"
|
|
|
|
content: "선택하신 " + selected.length + "건의 " + $P.control.prefixName + " 정보를 삭제하시겠습니까?"
|
|
|
|
, onOK : async() => {
|
|
|
|
, onOK: () => {
|
|
|
|
// 삭제 사유 입력
|
|
|
|
// 삭제 사유 입력
|
|
|
|
let resp = await fetch(wctx.url("/resources/html/inputRsnDialog.html"));
|
|
|
|
fetch(wctx.url("/resources/html/inputRsnDialog.html"))
|
|
|
|
let template = await resp.text();
|
|
|
|
.then(function(resp) { return resp.text(); })
|
|
|
|
|
|
|
|
.then(function(template) {
|
|
|
|
dialog.open({
|
|
|
|
dialog.open({
|
|
|
|
id: "inputDelRsnDialog"
|
|
|
|
id: "inputDelRsnDialog"
|
|
|
|
, title: title
|
|
|
|
, title: title
|
|
|
@ -531,9 +531,10 @@
|
|
|
|
, content: template
|
|
|
|
, content: template
|
|
|
|
, init: () => { setDialogZindex(); }
|
|
|
|
, init: () => { setDialogZindex(); }
|
|
|
|
, onOK: () => {
|
|
|
|
, onOK: () => {
|
|
|
|
$P.callbackRsn({ reason : $("#reason").val() });
|
|
|
|
$P.callbackRsn({ reason: $("#reason").val() });
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|