소스 정리.

main
JoJH 1 week ago
parent c2b2258be4
commit 521d2f47e3

@ -330,8 +330,11 @@
**************************************************************************/
// 초기화
$P.fnReset = () => {
// 화면 초기화
$P.findn("frmSearch").reset();
// 초기화
$P.findn("frmSearch").reset(); // 화면 초기화
$P.ctrl.dataset.clear(); // dataset 초기화
AppSupport.initDatepicker($P.findn("frmSearch")); // 달력 초기화
AppSupport.initDetailSearchButton($P.findn("frmSearch")); // 상세검색 버튼 화살표
// input, select 초기화
let searchForm = $P.$findn("frmSearch");
@ -347,9 +350,6 @@
// $P.$findn("schCrdnYmdTo").datepicker("setDate", TODAY()); // 단속 일자 종료
$P.$findn("byOutput").val("동적 검색"); // 동적 검색
// dataset 초기화
$P.ctrl.dataset.clear();
// URL 설정
$P.setUrl("${prefixUrl}");
@ -516,9 +516,6 @@
$P.setEvent();
// 2. 초기 설정
AppSupport.initDatepicker($P.findn("frmSearch")); // 달력 초기화
AppSupport.initDetailSearchButton($P.findn("frmSearch")); // 상세검색 버튼 화살표
$P.fnReset();
// 3. 보안모드

@ -234,13 +234,10 @@
**************************************************************************/
// 업무 구분 변경 이벤트
$P.fnReset = (initSearchYN) => {
// 화면 초기화
$P.findn("frmSearch").reset();
// dataset 초기화
$P.ctrl.dataset.clear();
// URL 설정
$P.setUrl("${prefixUrl}");
// 초기화
$P.findn("frmSearch").reset(); // 화면 초기화
$P.ctrl.dataset.clear(); // dataset 초기화
AppSupport.initDatepicker($P.findn("frmSearch")); // 달력 초기화
// input, select 초기화
let searchForm = $P.$findn("frmSearch");
@ -249,8 +246,6 @@
searchForm.find("input[type='hidden']").val("");
searchForm.find("select").each(function(){ $(this).find("option:eq(0)").prop("selected", true); });
AppSupport.initDatepicker($P.findn("frmSearch")); // 달력 초기화
// 기본 데이터 설정
$P.$findn("crdnId").val("${crdnId}"); // 단속 ID
$P.$findn("schEntRegNo").val("${schEntRegNo}"); // 기업 등록 번호
@ -265,6 +260,9 @@
$P.$findn("schCtrtYmd").datepicker("setDate", ctrtYmd); // 계약일자
$P.$findn("schVhrno").val("${schVhrno}"); // 자동차등록번호
// URL 설정
$P.setUrl("${prefixUrl}");
// 그리드 th
let colContent = $P.findn("tmpltCols").content;
let cols = $(colContent).find(".cmn");
@ -401,7 +399,6 @@
// DataTable width 변경 조정
Componentization.fnMakeResizableTable($P.findn("tableRspns"));
// DataTable 스크롤 이벤트 생성
Componentization.fnMakeScrollableTable($P.findn("tableRspns"), $P.scrollDataList);
}

@ -326,13 +326,11 @@
**************************************************************************/
// 초기화
$P.fnReset = () => {
// 화면 초기화
$P.findn("frmSearch").reset();
// dataset 초기화
$P.ctrl.dataset.clear();
// URL 설정
$P.setUrl("${prefixUrl}");
// 초기화
$P.findn("frmSearch").reset(); // 화면 초기화
$P.ctrl.dataset.clear(); // dataset 초기화
AppSupport.initDatepicker($P.findn("frmSearch")); // 달력 초기화
AppSupport.initDetailSearchButton($P.findn("frmSearch")); // 상세검색 버튼 화살표
// input, select 초기화
let searchForm = $P.$findn("frmSearch");
@ -341,16 +339,16 @@
searchForm.find("input[type='hidden']").val("");
searchForm.find("select").each(function(){ $(this).find("option:eq(0)").prop("selected", true); });
AppSupport.initDatepicker($P.findn("frmSearch")); // 달력 초기화
AppSupport.initDetailSearchButton($P.findn("frmSearch")); // 상세검색 버튼 화살표
// 기본 데이터 설정
$P.$findn("schCrdnYmdFrom").datepicker("setDate", DateSupport.getAddDay(-365)); // 단속 일자 시작
$P.$findn("schCrdnYmdTo").datepicker("setDate", TODAY()); // 단속 일자 종료
// $P.$findn("schCrdnYmdFrom").datepicker("setDate", DateSupport.getAddDay(-10)); // 단속 일자 시작
// $P.$findn("schCrdnYmdTo").datepicker("setDate", TODAY()); // 단속 일자 종료
$P.$findn("schCrdnYmdTo").datepicker("setDate", TODAY()); // 단속 일자 종료
$P.$findn("byOutput").val("동적 검색"); // 동적 검색
// URL 설정
$P.setUrl("${prefixUrl}");
// 그리드 th
let colContent = $P.findn("tmpltCols").content;
let cols = $(colContent).find(".cmn");

Loading…
Cancel
Save