Availability: |
| ||||
JavaScript syntax: | N | myUIEvent.initUIEvent(aType, canBubble, canCancel, aView, aDetail) | |||
Argument list: | aType | A string containing the event type | |||
canBubble | A boolean flag indicating whether the event can bubble | ||||
canCancel | A boolean flag indicating whether the event can be cancelled | ||||
aView | A reference to an AbstractView object | ||||
aDetail | A numeric detail value |
A new event object is manufactured by calling the DocumentEvent.createEvent() method. That event should have been defined with a type specified as "UIEvent". If it was, then it will support an initUIEvent() method. This must be called before the event is dispatched, otherwise the event object will not contain enough information for the event dispatcher/handler to make sense of it and route it to the correct target objects.
The two boolean argument values define whether the event will be allowed to be cancelled, and what type of propagation to use (bubble or capture).
The view argument refers to an AbstractView object which DOM level 2 describes and which may not yet be well supported by any browser.
The detail value can be used to pass context information into the event handling chain.
Prev | Home | Next |
UIEvent.detail | Up | UIEvent.view |
JavaScript Programmer's Reference, Cliff Wootton Wrox Press (www.wrox.com) Join the Wrox JavaScript forum at p2p.wrox.com Please report problems to support@wrox.com © 2001 Wrox Press. All Rights Reserved. Terms and conditions. |