Method Summary
|
protected Object |
AddMarshalledProperties(Object properties)
|
public Object |
cancel()
-
If the event is cancelable, calling this function will cancle the event, preventing any default handling from occurring.
|
public Object |
forceFullSubmit()
-
Specifies that the event must be delivered with a full page submit regardless of what isPartial() returns
|
public Object |
getClearMessages()
-
By default page level messages are cleared (before new messages added) when returning from the server.
|
public Object |
getCurrentTarget()
-
Returns the object whose listeners are currently being called.
|
public Object |
getDoesBubbles()
|
public Number |
getEventPhase()
-
Returns the current event delivery phase that the event is being delivered in.
|
public Object |
getProperties()
|
public Object |
getRoot()
-
Returns the root object for the event.
|
public Object |
getShowMessages()
-
By default page.showMessages() is called when returning from the server.
|
public Object |
getSource()
-
Returns the original source of the event, which will be different than the current target during the capture and bubbling phases.
|
public String |
getType()
-
Returns the type of event.
|
protected Object |
Init(Object source, String type)
-
Initializes the instance.
|
public Object |
isBubblingStopped()
-
Returns true if a stopBubbling() has been called on an event
|
public Object |
isCancelable()
-
Returns true if the calling cancel() on the event will prevent the event's default action from being performed.
|
public Object |
isCanceled()
-
Returns true if a cancel() has been called on a cancelable event.
|
protected Boolean |
IsDeleveryDiscrete()
|
public Object |
isFullSubmitForced()
-
Returns true if the event must be delivered with a full page submit regardless of what isPartial() returns, false otherwise
|
public Boolean |
isImmediate()
-
Returns true if this event should only trigger validation of immediate fields.
|
public Object |
isPartial()
-
Returns true if the event should be a partial request, false if it should result in a full postback.
|
public Object |
isResponseAnnounced()
-
Indicates whether the response should be announced to assistive technology users.
|
public Object |
isResponseExpected()
-
Returns true if the event is expected to produce response handled by the framework, false otherwise
|
protected Boolean |
IsUserInputPrevented()
|
public Boolean |
isValidationNeeded()
-
Returns true if this event should trigger validation.
|
public Object |
noResponseExpected()
-
Specifies that this event is not expected to produce a response handled by the framework, such as when export contents are streamed to Excel or when a file is downloaded.
|
public Object |
preventUserInput()
-
Calling this method prevents all user input while the event is being processed, including while the event is propagated to the server.
|
public Boolean |
propagatesToServer()
-
Returns true if the this event should propagate to the server.
|
public Object |
setPartial(Object partial)
-
Sets if the event should be a partial request.
|
public Object |
setRoot(Object root)
-
Returns the root object for the event.
|
public Object |
stopBubbling()
-
Cancels the current event from bubbling up the hierarchy of event handlers.
|
public Object |
toDebugString()
|