You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
455 B
JavaScript
15 lines
455 B
JavaScript
function initCalendar(o){
|
|
$("#"+o).datepicker({showAnim:"fadeIn",duration:0,minDate: 0, maxDate:"2y",numberOfMonths: 3,
|
|
showButtonPanel: true});
|
|
}
|
|
|
|
function initCalendar2(o){
|
|
$("#"+o).datepicker({showAnim:"fadeIn",duration:0,minDate: 0, maxDate:"2y",numberOfMonths: 2,
|
|
showButtonPanel: true});
|
|
}
|
|
function initCalendarObj(o){
|
|
$(o).datepicker({showAnim:"fadeIn",duration:0,minDate: 0, maxDate:"2y",numberOfMonths: 3,
|
|
showButtonPanel: true});
|
|
}
|
|
|