테마 적용 후 datepicker 오류문제 문의드립니다.
본문
여기서 테마를 받아서 사용중인데,
날짜 조회를 넣는 중에 jquery-ui/datepicker.php 를 불러와야 하는데..
아무런 반응이 없네요..;;
이 소스 그대로 기본테마에서는 잘 작동 합니다.
//상단 include 소스
include_once(G5_PLUGIN_PATH.'/jquery-ui/datepicker.php');
//php소스
<div class="2u">
<input type="text" id="fr_date" name="fr_date" value="<?php echo $fr_date; ?>" class="frm_input" size="10" maxlength="10" readonly placeholder="시작일" >
</div>
<div class="$">
~
</div>
<div class="2u">
<input type="text" id="to_date" name="to_date" value="<?php echo $to_date; ?>" class="frm_input" size="10" maxlength="10" placeholder="종료일" >
</div>
<?php if($is_admin){?>
<div class="3u">
<input type="text" name="stx" value="<?php echo stripslashes($stx) ?>" id="stx" class="frm_input" size="15" maxlength="20" placeholder="어린이집 이름" >
</div>
<?php }?>
<div class="3u">
<input type="submit" value="검색" class="btn_submit">
</div>
//스크립트
$(function(){
$("#fr_date, #to_date").datepicker({
changeMonth: true,
changeYear: true,
dateFormat: "yy-mm-dd",
showButtonPanel: true,
yearRange: "c-99:c+99",
maxDate: "+365d"
});
});