|
|
|
@ -21,9 +21,10 @@
|
|
|
|
|
/**************************************************************************
|
|
|
|
|
* Global Variable
|
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
|
|
|
|
// 공통 코드
|
|
|
|
|
var FIM054 = new CommonCodes(${FIM054}, true);
|
|
|
|
|
var fastSearch = ${fastSearch};
|
|
|
|
|
|
|
|
|
|
// 공통 코드
|
|
|
|
|
var FIM054 = new CommonCodes(${FIM054}, true);
|
|
|
|
|
|
|
|
|
|
/**************************************************************************
|
|
|
|
|
* DatasetControl
|
|
|
|
@ -54,16 +55,16 @@ var integrationSearchControl = new DatasetControl({
|
|
|
|
|
**************************************************************************/
|
|
|
|
|
// Dataset 변경 이벤트
|
|
|
|
|
integrationSearchControl.onDatasetChange = obj => {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
integrationSearch.renderList("up");
|
|
|
|
|
integrationSearch.renderList("down");
|
|
|
|
|
|
|
|
|
|
//$("#paging--${pageName}").setPagingInfo({
|
|
|
|
|
// list : integrationSearchControl.dataset
|
|
|
|
|
// , prefix : "paging--${pageName}"
|
|
|
|
|
// , start : obj.${infoPrefix}Start
|
|
|
|
|
// , totalSize : obj.${infoPrefix}Total
|
|
|
|
|
// , fetchSize : obj.${infoPrefix}Fetch
|
|
|
|
|
// , start : obj.Start
|
|
|
|
|
// , totalSize : obj.Total
|
|
|
|
|
// , fetchSize : obj.Fetch
|
|
|
|
|
// , func : "integrationSearchControl.load({index})"
|
|
|
|
|
//});
|
|
|
|
|
|
|
|
|
@ -327,6 +328,22 @@ $(document).ready(function() {
|
|
|
|
|
fn_securityModeToggle($("#securityMode--top").is(":checked"));
|
|
|
|
|
|
|
|
|
|
integrationSearch.fnReset();
|
|
|
|
|
|
|
|
|
|
if(fastSearch != null){
|
|
|
|
|
if(fastSearch.fastBy == "vhrno"){
|
|
|
|
|
$("#ischVhrno--${pageName}").val(fastSearch.fastTerm);
|
|
|
|
|
} else if(fastSearch.fastBy == "rtpyrNm"){
|
|
|
|
|
$("#ischRtpyrNm--${pageName}").val(fastSearch.fastTerm);
|
|
|
|
|
} else if(fastSearch.fastBy == "rtpyrNo"){
|
|
|
|
|
$("#ischRtpyrNo--${pageName}").val(fastSearch.fastTerm);
|
|
|
|
|
} else if(fastSearch.fastBy == "cvlcptAplcntNm"){
|
|
|
|
|
$("#ischCvlcptAplcntNm--${pageName}").val(fastSearch.fastTerm);
|
|
|
|
|
} else {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$("#btnSearch--${pageName}").click();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
</script>
|
|
|
|
|