You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When an externalControl is set, then I like to disable the onClick handler
of the relative control.
The patch changes
/* finally declare the event listener on input field */
Event.observe(this._relative,
'click', this.click.bindAsEventListener(this), false);
to
/* finally declare the event listener on input field */
if ( Object.isUndefined(h_p["externalControl"]) || (
!Object.isUndefined(h_p["externalControl"]) &&
Object.isUndefined(h_p["noActivateOnClick"]) ) )
Event.observe(this._relative,
'click', this.click.bindAsEventListener(this), false);
The onClick event listener is only set, when no externalControl is set or
an external control is set and noActivateOnClick is not set.
Original issue reported on code.google.com by hannes.d...@gmail.com on 19 Jul 2009 at 12:20
Original issue reported on code.google.com by
hannes.d...@gmail.com
on 19 Jul 2009 at 12:20Attachments:
The text was updated successfully, but these errors were encountered: