페이지별 datepicker 초기화 함수 추가
parent
f79d10c122
commit
f09fc1172c
@ -0,0 +1,17 @@
|
|||||||
|
function initDatepicker(elementId){
|
||||||
|
|
||||||
|
var executionArea = $("#"+elementId);
|
||||||
|
|
||||||
|
/*--------------------- 달력 제어 ---------------------*/
|
||||||
|
executionArea.find(".form-date").datepicker({
|
||||||
|
changeMonth: true,
|
||||||
|
changeYear: true,
|
||||||
|
showButtonPanel: true
|
||||||
|
});
|
||||||
|
|
||||||
|
executionArea.find(".form-date").next("button.bx-calendar").on("click", function() {
|
||||||
|
$(this).prev().focus();
|
||||||
|
});
|
||||||
|
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue