Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    Page level events

    Hi,

    EventHandler's javadoc says as follows:

    "
    The ISC system provides a predictable cross-browser event-handling mechanism for ISC widgets. Events can be handled both at the page level (i.e., globally), and at the level of individual widgets.

    With the exception of a few page-specific events ('load', 'unload', 'idle' and 'resize'), events are processed in the following sequence:

    1. The event is sent to any global (page-level) event handlers. These handlers can cancel further propagation of the event by returning false. You can register to listen for any of the events linked in the seeAlso section (below) by calling Page.setEvent method.
    ...
    "

    I have trouble finding any methods for registering such Page level events (particularly setEvent -method) ?

    br,
    Marko

    #2
    These are dangling references to APIs that don't actually apply in GWT - you can use the core GWT APIs related to EventPreview if you want to capture events at the page level.

    Comment

    Working...
    X