ldapsaisie/public_html/includes/js/LSformElement_date_field.js
2009-11-13 14:26:11 +01:00

88 lines
2.4 KiB
JavaScript

var LSformElement_date_field = new Class({
initialize: function(name,input){
this.name = name;
this.input = input;
this.calendarBtn = new Element('img');
this.calendarBtn.src = varLSdefault.imagePath('calendar.png');
this.calendarBtn.addClass('btn');
this.calendarBtn.addEvent('click',this.onCalendarBtnClick.bind(this));
this.calendarBtn.injectAfter(this.input);
varLSdefault.addHelpInfo(this.calendarBtn,'LSformElement_date','calendar');
this.params = varLSdefault.LSjsConfig[this.name];
if (!$type(this.params)) {
this.params={};
}
if (!$type(this.params.format)) {
this.params.format = "%d/%m/%Y, %H:%M:%S";
}
if (!$type(this.params.firstDayOfWeek)) {
this.params.firstDayOfWeek=0;
}
this.firstInputClick = 1;
this.input.addEvent('click',this.onInputClick.bind(this));
this.date = Date.parseDate(this.input.value,this.params.format);
this.calendar = new Calendar(
this.params.firstDayOfWeek,
this.date,
this.onChangeCalendar.bind(this),
this.onCloseCalendar.bind(this)
);
this.calendar.setDateFormat(this.params.format);
this.calendar.showsTime = true;
this.calendar.create();
this.nowBtn = new Element('img');
this.nowBtn.src = varLSdefault.imagePath('now.png');
this.nowBtn.addClass('btn');
this.nowBtn.addEvent('click',this.onNowBtnClick.bind(this));
this.nowBtn.injectAfter(this.calendarBtn);
varLSdefault.addHelpInfo(this.nowBtn,'LSformElement_date','now');
},
onInputClick: function() {
if(this.firstInputClick==1) {
this.toogle();
this.firstInputClick=0;
}
},
onCalendarBtnClick: function() {
this.toogle();
},
open: function() {
this.opened = 1;
this.calendar.showAtElement(this.calendarBtn);
},
close: function() {
this.opened = 0;
this.calendar.hide();
},
toogle: function() {
if (this.opened) {
this.close();
}
else {
this.open();
}
},
onChangeCalendar: function(calendar, date) {
this.input.value = date;
},
onCloseCalendar: function() {
this.close();
},
onNowBtnClick: function() {
this.input.value = new Date().print(this.params.format);
},
});