|
|
@ -62,6 +62,10 @@
|
|
|
|
<option value="${item.code}">${item.value}</option>
|
|
|
|
<option value="${item.code}">${item.value}</option>
|
|
|
|
</c:forEach>
|
|
|
|
</c:forEach>
|
|
|
|
</select>
|
|
|
|
</select>
|
|
|
|
|
|
|
|
<label for="dstrbncYn--${pageName}">
|
|
|
|
|
|
|
|
<input type="checkbox" id="dstrbncYn--${pageName}" name="dstrbncYn" data-map="DSTRBNC_YN" value="Y" />
|
|
|
|
|
|
|
|
1면 방해
|
|
|
|
|
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="col-md-6 select2-primary">
|
|
|
|
<div class="col-md-6 select2-primary">
|
|
|
|
<label for="crdnStdgNm--${pageName}" class="w-px-130 bg-lighter pe-2 col-form-label text-sm-end">법정동</label>
|
|
|
|
<label for="crdnStdgNm--${pageName}" class="w-px-130 bg-lighter pe-2 col-form-label text-sm-end">법정동</label>
|
|
|
@ -742,6 +746,14 @@ $(document).ready(function(){
|
|
|
|
dialog.close("cvlcptInitialDataEditDialog--${openerPageName}");
|
|
|
|
dialog.close("cvlcptInitialDataEditDialog--${openerPageName}");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**************************************************************************
|
|
|
|
|
|
|
|
* 초기화(업무별 입력항목)
|
|
|
|
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
|
|
var clsForTask = "${taskSeCd}".toLowerCase();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//업무별 입력 항목
|
|
|
|
|
|
|
|
renderForTask('frmEdit--${pageName}', clsForTask);
|
|
|
|
|
|
|
|
|
|
|
|
/**************************************************************************
|
|
|
|
/**************************************************************************
|
|
|
|
* element.on
|
|
|
|
* element.on
|
|
|
|
**************************************************************************/
|
|
|
|
**************************************************************************/
|
|
|
@ -912,6 +924,17 @@ $(document).ready(function(){
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if("${taskSeCd}" == "DPV"){
|
|
|
|
|
|
|
|
$("#vltnCd--${pageName}").on("change", function(){
|
|
|
|
|
|
|
|
if(this.value == "01"){
|
|
|
|
|
|
|
|
$("label[for='dstrbncYn--${pageName}']").show();
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
$("label[for='dstrbncYn--${pageName}']").hide();
|
|
|
|
|
|
|
|
$("input[id='dstrbncYn--${pageName}']").prop("checked", false);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
$("#refreshEnd--${pageName}").on("refreshEnd", function(){
|
|
|
|
$("#refreshEnd--${pageName}").on("refreshEnd", function(){
|
|
|
|
if(this.dataset.cursorKey != null && this.dataset.cursorKey != ""){
|
|
|
|
if(this.dataset.cursorKey != null && this.dataset.cursorKey != ""){
|
|
|
|
$P.fnGo(this.dataset.cursorKey);
|
|
|
|
$P.fnGo(this.dataset.cursorKey);
|
|
|
@ -923,11 +946,6 @@ $(document).ready(function(){
|
|
|
|
/**************************************************************************
|
|
|
|
/**************************************************************************
|
|
|
|
* 초기화
|
|
|
|
* 초기화
|
|
|
|
**************************************************************************/
|
|
|
|
**************************************************************************/
|
|
|
|
var clsForTask = "${taskSeCd}".toLowerCase();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//업무별 입력 항목
|
|
|
|
|
|
|
|
renderForTask('frmEdit--${pageName}', clsForTask);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
initDatepicker("frmEdit--${pageName}"); //달력 초기화
|
|
|
|
initDatepicker("frmEdit--${pageName}"); //달력 초기화
|
|
|
|
|
|
|
|
|
|
|
|
$("#frmEdit--${pageName}").find(".form-date").each(function(){
|
|
|
|
$("#frmEdit--${pageName}").find(".form-date").each(function(){
|
|
|
@ -959,6 +977,12 @@ $(document).ready(function(){
|
|
|
|
crdnInfo.CVLCPT_APLY_CN = escapeHTMLEntity(crdnInfo.CVLCPT_APLY_CN);
|
|
|
|
crdnInfo.CVLCPT_APLY_CN = escapeHTMLEntity(crdnInfo.CVLCPT_APLY_CN);
|
|
|
|
$P.crdnControl.setData([crdnInfo]);
|
|
|
|
$P.crdnControl.setData([crdnInfo]);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if($("#taskSeCd--${pageName}").val() == "DPV" && $("#vltnCd--${pageName}").val() == "01"){
|
|
|
|
|
|
|
|
$("label[for='dstrbncYn--${pageName}']").show();
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
$("label[for='dstrbncYn--${pageName}']").hide();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//보안모드
|
|
|
|
//보안모드
|
|
|
|
fn_securityModeToggle($("#securityMode--top").is(":checked"));
|
|
|
|
fn_securityModeToggle($("#securityMode--top").is(":checked"));
|
|
|
|
|
|
|
|
|
|
|
|