Displaying 1 result from an estimated 1 matches for "bshow".
Did you mean:
show
2005 Dec 18
3
JavaScript question
...ar 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''d like to
access this - but this in a event-handler is the element of the event,
and not the object I want to refer to, which is the instance of my
po...