기타 오류 수정.

main
JoJH 1 week ago
parent 0f3e5086d9
commit 4eef8a961f

@ -197,17 +197,19 @@
// 초기 화면 설정
$P.fnReset = () => {
// 화면 초기화
$P.findn("frmEdit").reset();
// 초기화
$P.findn("frmEdit").reset(); // 화면 초기화
AppSupport.initDatepicker($P.findn("frmEdit")); // 달력 초기화
// 달력 초기화
$P.$findn("ansYmd").datepicker("setDate", TODAY());
$P.$findn("ansTm").val(new Date().toTimeString().split(" ")[0]);
// 기본 데이터 설정
$P.$findn("ansYmd").datepicker("setDate", TODAY()); // 답변 일자
$P.$findn("ansTm").val(new Date().toTimeString().split(" ")[0]); // 답변 시각
// 화면 호출(callPurpose)이 view라면 버튼 비활성화 disabled = true
if ($P.callPurpose == "view") {
// input 요소들을 disabled
$P.$findn("frmEdit").find("input,textarea,select").prop("disabled", true);
// button 요소들을 disabled
$P.$findn("btnAnsYmd").prop("disabled", true); // 답변 일자 달력 버튼
$P.$findn("btnSave").prop("disabled", true); // 저장 버튼
@ -221,8 +223,6 @@
$P.setEvent();
// 2. 초기 화면 설정
AppSupport.initDatepicker($P.findn("frmEdit"));
$P.fnReset();
// 3. Dataset 설정

@ -211,7 +211,7 @@
AppSupport.setDialogZindex();
}
, onClose: () => { $P.ctrlOpnn.refresh(); } // 정보 새로고침
, onClose: () => { $P.fnRefresh(); } // 정보 새로고침
});
}
});

Loading…
Cancel
Save