|
|
|
@ -1,6 +1,10 @@
|
|
|
|
|
function initDatepicker(elementId){
|
|
|
|
|
|
|
|
|
|
var executionArea = $("#"+elementId);
|
|
|
|
|
var executionArea;
|
|
|
|
|
if(typeof elementId == "string"){
|
|
|
|
|
executionArea = $("#"+elementId);
|
|
|
|
|
} else {
|
|
|
|
|
executionArea = $(elementId);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
executionArea.find(".form-date").datePicker();
|
|
|
|
|
|
|
|
|
@ -8,7 +12,12 @@ function initDatepicker(elementId){
|
|
|
|
|
|
|
|
|
|
function initDetailSearchButton(elementId){
|
|
|
|
|
|
|
|
|
|
var executionArea = $("#"+elementId);
|
|
|
|
|
var executionArea;
|
|
|
|
|
if(typeof elementId == "string"){
|
|
|
|
|
executionArea = $("#"+elementId);
|
|
|
|
|
} else {
|
|
|
|
|
executionArea = $(elementId);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*--------------------- 상세검색 버튼 제어 ---------------------*/
|
|
|
|
|
executionArea.find(".btn-open-detail").on("click", function() {
|
|
|
|
|