1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
/* ==============================
* anypicker 함수 (년월일)
* ============================== */
$.fn.dateAnyPicker = function(option){
var maxDate,minDate ;
var el = $(this);
if(!option.maxDate) maxDate = false;
else maxDate = new Date(option.maxDate[0],option.maxDate[1],2);
if(!option.minDate) minDate = false;
else minDate = new Date(option.minDate[0],option.minDate[1],2);
$(this).AnyPicker({
mode: "datetime",
dateTimeFormat: option.format,
minValue: minDate,
maxValue: maxDate,
buttonClicked : function(){
$("section").removeClass('dim-on');
},
parseInput:function(sElemValue)
{
console.log("test",new Date(sElemValue));
this.setSelectedDate(new Date(sElemValue));
$("section").addClass('dim-on');
return sElemValue;
},
setOutput: function(dateTxt){
option.onChange();
return dateTxt;
},
viewSections:
{
header: ["headerTitle"],
contentTop: [],
contentBottom: [],
footer: ["setButton", "cancelButton"]
},
i18n:
{
setButton: "확인",
cancelButton : "취소"
},
headerTitle:
{
markup: "<span class='ap-header__title02'>날짜선택</span>"
// type: "Text",
// contentBehaviour: "Static",
// format: ""
}
});
}
|
'javascript, JQuery' 카테고리의 다른 글
[javascript] 배열 값 중복제거, 배열합치기 (0) | 2020.07.06 |
---|---|
[Jquery] 데이터 포맷(날짜에 하이픈 넣기) (0) | 2020.04.27 |
제이쿼리 아코디언 _ Jquery Accodion (컨텐츠 펼침/접힘) (0) | 2020.04.13 |
ajax 페이징처리 (더보기) (5) | 2020.03.03 |
JSON 객체변환(파싱) , Cilck 이벤트 (0) | 2020.02.28 |