search for: org_apache_myfaces_popupcalendar

Displaying 1 result from an estimated 1 matches for "org_apache_myfaces_popupcalendar".

2005 Dec 18
3
JavaScript question
...with this. I have this calendar code I hate (and still have to maintain ;) and wanted to change it to use object-orientation. So I have written a JavaScript-class called PopupCalendar no problem. Now I need to use event-handlers with this class, one of the event-handlers you can see down below: org_apache_myfaces_PopupCalendar.prototype._clickhandler=function(){ alert(typeof org_apache_myfaces_PopupCalendar.prototype); alert(org_apache_myfaces_PopupCalendar.prototype.bShow); if (!this.bShow) this._hideCalendar(); this.bShow = false; } You see that I access this in these event-handlers. Well, I...