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.
21 lines
1.0 KiB
JavaScript
21 lines
1.0 KiB
JavaScript
document.writeln("<link href='/css/ui.core.css' rel='stylesheet' type='text/css' media='all' />");
|
|
document.writeln("<link href='/css/ui.datepicker.css' rel='stylesheet' type='text/css' media='all' />");
|
|
document.writeln("<link href='/css/ui.theme.css' rel='stylesheet' type='text/css' media='all' />");
|
|
document.writeln("<link href='/css/calendar.css' rel='stylesheet' type='text/css' media='all' />");
|
|
document.writeln("<script type='text/javascript' src='/js/ui.core.js'></script>");/*wst need this in Hotel*/
|
|
document.writeln("<script type='text/javascript' src='/js/ui.datepicker.js'></script>");
|
|
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});
|
|
}
|
|
|