Recent Changes - Search:

Administrators

Developers

Articles

Cookbook

edit

detachEvent method

Developers.QuiXdetachEvent History

Hide minor edits - Show changes to output

October 01, 2007, at 01:58 PM by Thomas Bellos -
Changed line 11 from:
||!Parameters||''eventType'' : Required. The event type to be detached. ||
to:
||!Parameters||''eventType'' : Required. The event type to be detached, ie onclick, onscroll etc. ||
October 01, 2007, at 01:57 PM by Thomas Bellos -
Changed lines 3-4 from:
The '''detachEvent''' removes the event handler defined by eventType and places it to an internal registry placeholder. The same event handler can be easily reattached by calling the attachEvent() method without passing a new handler.
to:
The '''detachEvent''' removes the event handler defined by eventType and places it to an internal registry placeholder. The same event handler can be easily reattached by calling the [[(Developers.QuiX)attachEvent]] method without passing a new handler.
October 01, 2007, at 01:54 PM by Thomas Bellos -
Changed lines 3-4 from:
The '''detachEvent''' removes the event handler defined by eventType and places it to an internal registry placeholder. If the user needs to reattach the event handler, the application retrieves the function from the registry. In case though, the attachEvent() method is supplied with the same name as the one stored in the registry, the new method is stored.
to:
The '''detachEvent''' removes the event handler defined by eventType and places it to an internal registry placeholder. The same event handler can be easily reattached by calling the attachEvent() method without passing a new handler.
October 01, 2007, at 01:51 PM by Thomas Bellos -
Added lines 1-12:
(:title detachEvent method:)

The '''detachEvent''' removes the event handler defined by eventType and places it to an internal registry placeholder. If the user needs to reattach the event handler, the application retrieves the function from the registry. In case though, the attachEvent() method is supplied with the same name as the one stored in the registry, the new method is stored.

!! Syntax

||cellspacing=1 cellpadding=4 border=1 bgcolor=#ededed
||!Syntax||[@
widget.detachEvent(eventType);
@]||
||!Parameters||''eventType'' : Required. The event type to be detached. ||
||!Returns|| - ||
Page last modified on October 01, 2007, at 01:58 PM