org.wings.script
Interface JavaScriptEvent


public interface JavaScriptEvent

Some widely implemented JavaScript events.

Author:
Holger Engels

Field Summary
static String ON_ACTIVATE
          special event of IE that fires when the object is set as the active element see: http://msdn.microsoft.com/workshop/author/dhtml/reference/events/onactivate.asp
static String ON_AVAILABLE
          special YUI library DOM event, see http://developer.yahoo.com/yui/event/#onavailable onAvailable lets you define a function that will execute as soon as an element is detected in the DOM.
static String ON_BLUR
           
static String ON_CHANGE
           
static String ON_CLICK
           
static String ON_DBLCLICK
           
static String ON_FOCUS
           
static String ON_KEY_DOWN
           
static String ON_KEY_PRESS
           
static String ON_KEY_UP
           
static String ON_LOAD
           
static String ON_MOUSE_DOWN
           
static String ON_MOUSE_MOVE
           
static String ON_MOUSE_OUT
           
static String ON_MOUSE_OVER
           
static String ON_MOUSE_UP
           
static String ON_RESET
           
static String ON_RESIZE
           
static String ON_SCROLL
           
static String ON_SELECT
           
static String ON_SUBMIT
           
static String ON_UNLOAD
           
 

Field Detail

ON_BLUR

static final String ON_BLUR
See Also:
Constant Field Values

ON_CLICK

static final String ON_CLICK
See Also:
Constant Field Values

ON_DBLCLICK

static final String ON_DBLCLICK
See Also:
Constant Field Values

ON_CHANGE

static final String ON_CHANGE
See Also:
Constant Field Values

ON_FOCUS

static final String ON_FOCUS
See Also:
Constant Field Values

ON_KEY_DOWN

static final String ON_KEY_DOWN
See Also:
Constant Field Values

ON_KEY_PRESS

static final String ON_KEY_PRESS
See Also:
Constant Field Values

ON_KEY_UP

static final String ON_KEY_UP
See Also:
Constant Field Values

ON_LOAD

static final String ON_LOAD
See Also:
Constant Field Values

ON_MOUSE_DOWN

static final String ON_MOUSE_DOWN
See Also:
Constant Field Values

ON_MOUSE_MOVE

static final String ON_MOUSE_MOVE
See Also:
Constant Field Values

ON_MOUSE_OUT

static final String ON_MOUSE_OUT
See Also:
Constant Field Values

ON_MOUSE_OVER

static final String ON_MOUSE_OVER
See Also:
Constant Field Values

ON_MOUSE_UP

static final String ON_MOUSE_UP
See Also:
Constant Field Values

ON_RESET

static final String ON_RESET
See Also:
Constant Field Values

ON_RESIZE

static final String ON_RESIZE
See Also:
Constant Field Values

ON_SCROLL

static final String ON_SCROLL
See Also:
Constant Field Values

ON_SELECT

static final String ON_SELECT
See Also:
Constant Field Values

ON_SUBMIT

static final String ON_SUBMIT
See Also:
Constant Field Values

ON_UNLOAD

static final String ON_UNLOAD
See Also:
Constant Field Values

ON_ACTIVATE

static final String ON_ACTIVATE
special event of IE that fires when the object is set as the active element see: http://msdn.microsoft.com/workshop/author/dhtml/reference/events/onactivate.asp

See Also:
Constant Field Values

ON_AVAILABLE

static final String ON_AVAILABLE
special YUI library DOM event, see http://developer.yahoo.com/yui/event/#onavailable onAvailable lets you define a function that will execute as soon as an element is detected in the DOM. The intent is to reduce the occurrence of timing issues when rendering script and html inline. It is not meant to be used to define handlers for elements that may eventually be in the document; it is meant to be used to detect elements you are in the process of loading.

See Also:
Constant Field Values


wingS Swings ;-)