|
|
@ -61,7 +61,7 @@
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="card-datatable text-nowrap">
|
|
|
|
<div class="card-datatable text-nowrap">
|
|
|
|
<div class="dataTables_wrapper dt-bootstrap5 no-footer">
|
|
|
|
<div class="dataTables_wrapper dt-bootstrap5 no-footer">
|
|
|
|
<div class="table-responsive ox-scroll oy-scroll h-px-600">
|
|
|
|
<div name="table-responsive" class="table-responsive ox-scroll oy-scroll h-px-600">
|
|
|
|
<table class="table-layout-fixed datatables-ajax table table-bordered dataTable no-footer">
|
|
|
|
<table class="table-layout-fixed datatables-ajax table table-bordered dataTable no-footer">
|
|
|
|
<thead class="sticky-thead">
|
|
|
|
<thead class="sticky-thead">
|
|
|
|
<tr name="exmptnVhclTheadTr">
|
|
|
|
<tr name="exmptnVhclTheadTr">
|
|
|
@ -347,16 +347,21 @@ $(document).ready(function(){
|
|
|
|
fetch(wctx.url("/resources/html/inputRsnDialog.html"))
|
|
|
|
fetch(wctx.url("/resources/html/inputRsnDialog.html"))
|
|
|
|
.then(function(resp) { return resp.text(); })
|
|
|
|
.then(function(resp) { return resp.text(); })
|
|
|
|
.then(function(template) {
|
|
|
|
.then(function(template) {
|
|
|
|
|
|
|
|
let dialogName = "inputDelRsnDialog";
|
|
|
|
|
|
|
|
let dialogId = dialogName + "-" + uuid();
|
|
|
|
dialog.open({
|
|
|
|
dialog.open({
|
|
|
|
id: "inputDelRsnDialog--${pageName}"
|
|
|
|
id: dialogId
|
|
|
|
, title: "삭제 사유 입력"
|
|
|
|
, title: "삭제 사유 입력"
|
|
|
|
, size: "lg"
|
|
|
|
, size: "lg"
|
|
|
|
, content: template
|
|
|
|
, content: template
|
|
|
|
, init: () => { setDialogZindex(); }
|
|
|
|
, init: () => {
|
|
|
|
|
|
|
|
setDialogZindex();
|
|
|
|
|
|
|
|
$("#"+dialogId).attr("name", dialogName);
|
|
|
|
|
|
|
|
$("#"+dialogId).attr("data-ref-doctx","${pageName}");
|
|
|
|
|
|
|
|
}
|
|
|
|
, onOK: () => {
|
|
|
|
, onOK: () => {
|
|
|
|
|
|
|
|
|
|
|
|
$P.fnRemove($("#reason").val());
|
|
|
|
$P.fnRemove($("#reason").val());
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|