|
Oracle Fusion Middleware JavaScript API Reference for Oracle ADF Faces 11g Release 2 (11.1.2.0.0) E17489-01 |
||||||||
PREV NEXT | FRAMES NO FRAMES Warning: private items are visible |
org.ecmascript.object.Object | +--org.w3c.dom.events.Event
public abstract class Event extends Object
Field Summary |
|
---|---|
public static Number |
|
public Boolean |
|
public static Number |
|
public Boolean |
|
public static Number |
|
public EventTarget |
|
public Number |
|
public EventTarget |
|
public DOMTimeStamp |
|
public String |
|
Fields inherited from org.ecmascript.object.Object |
constructor, prototype |
Method Summary |
|
---|---|
public void |
|
public void |
|
public void |
|
Field Detail |
---|
public static Number AT_TARGET
public Boolean bubbles
public static Number BUBBLING_PHASE
public Boolean cancelable
public static Number CAPTURING_PHASE
public EventTarget currentTarget
public Number eventPhase
public EventTarget target
public DOMTimeStamp timeStamp
public String type
Method Detail |
---|
public void initEvent(String eventTypeArg,
Boolean canBubbleArg,
Boolean cancelableArg)
eventTypeArg |
- | Specifies the event type. This type may be any event type currently defined in this specification or a new event type.. The string must be an XML name. Any new event type must not begin with any upper, lower, or mixed case version of the string "DOM". This prefix is reserved for future DOM event sets. It is also strongly recommended that third parties adding their own events use their own prefix to avoid confusion and lessen the probability of conflicts with other new events. |
canBubbleArg |
- | Specifies whether or not the event can bubble. |
cancelableArg |
- | Specifies whether or not the event's default action can be prevented. |
void
- nullpublic void preventDefault()
void
- nullpublic void stopPropagation()
EventListener
the event will cease propagating through the tree. The event will complete dispatch to all listeners on the current EventTarget
before event flow stops. This method may be used during any stage of event flow.void
- null
|
Oracle Fusion Middleware JavaScript API Reference for Oracle ADF Faces 11g Release 2 (11.1.2.0.0) E17489-01 |
||||||||
PREV NEXT | FRAMES NO FRAMES Warning: private items are visible |