| Field Summary | |
|---|---|
| static String | The browser native event type beforeunload. |
| static String | The browser native event type blur. |
| static String | The browser native event type change. |
| static String | The browser native event type click. |
| static String | The browser native event type dblclick. |
| static String | The browser native event type error. |
| static String | The browser native event type focus. |
| static String | The browser native event type keydown. |
| static String | The browser native event type keypress. |
| static String | The browser native event type keyup. |
| static int | The browser native key code for the 0 key. |
| static int | The browser native key code for the 9 key. |
| static int | The browser native key code for the A key. |
| static int | The browser native key code for the Alt key. |
| static int | The browser native key code for the down arrow key. |
| static int | The browser native key code for the left arrow key. |
| static int | The browser native key code for the right arrow key. |
| static int | The browser native key code for the up arrow key. |
| static int | The browser native key code for the Backspace key. |
| static int | The browser native key code for the Ctrl key. |
| static int | The browser native key code for the Delete key. |
| static int | The browser native key code for the End key. |
| static int | The browser native key code for the Enter key. |
| static int | The browser native key code for the Esc key. |
| static int | The browser native key code for the F1 key. |
| static int | The browser native key code for the F15 key. |
| static int | The browser native key code for the Home key. |
| static int | The browser native key code for the Insert key. |
| static int | The browser native key code for the Meta key. |
| static int | The browser native key code for the number pad 0 key. |
| static int | The browser native key code for the number pad 9 key. |
| static int | The browser native key code for the number pad addition (+) key. |
| static int | The browser native key code for the number pad decimal (. |
| static int | The browser native key code for the number pad division (/) key. |
| static int | The browser native key code for the number pad multiply (*) key. |
| static int | The browser native key code for the number pad subtract (-) key. |
| static int | The browser native key code for the Page Down key. |
| static int | The browser native key code for the Page Up key. |
| static int | The browser native key code for the Shift key. |
| static int | The browser native key code for the space bar key. |
| static int | The browser native key code for the Tab key. |
| static int | The browser native key code for the Z key. |
| static String | The browser native event type load. |
| static String | The browser native event type mousedown. |
| static String | The browser native event type mousemove. |
| static String | The browser native event type mouseout. |
| static String | The browser native event type mouseover. |
| static String | The browser native event type mouseup. |
| static String | The browser native event type mousewheel. |
| static String | The browser native event type resize. |
| static String | The browser native event type unload. |
| Method Summary | |
|---|---|
| boolean | altKey() Returns true if the alt key was pressed. |
| boolean | Returns true if the backspace key was pressed. |
| int | button() Returns integer designating the mouse button clicked/moused-down/moused-up; 1 (left), 2 (right), and as supported. |
| void | Cancels event bubbling for the event. |
| void | Cancels the key from firing by setting the keyCode to 0 (zero) for the event. |
| void | Cancels the return value for the event. |
| int | clientX() Returns the clientX property for the event (where it occurred on-screen). |
| int | clientY() Returns the clientY property for the event (where it occurred on-screen). |
| boolean | ctrlKey() Returns true the ctrl key was pressed. |
| boolean | Returns true if the delete key was pressed. |
| boolean | Returns true if the down-arrow key was pressed. |
| boolean | endKey() Returns true if the end key was pressed. |
| boolean | enterKey() Returns true if the enter key was pressed. |
| boolean | Returns true if the escape key was pressed. |
| boolean | exists() Deprecated. |
| HTMLElement | Returns handle to the HTML element that was moused away from (onmouseout). |
| int | getTrueX() Returns the actual position in the browser from the left edge for where the event occurred. |
| int | getTrueY() Returns the actual position in the browser from the top edge for where the event occurred. |
| String | getType() Returns the type of event, e.g. |
| boolean | homeKey() Returns true if the home key was pressed. |
| boolean | Returns true if the insert key was pressed. |
| boolean | Whether one of the four arrow keys was pressed. |
| boolean | Whether one of the 15 function keys was pressed. |
| int | keyCode() Returns integer representing the key code of the key just pressed/keyed-down. |
| boolean | Returns true if the left-arrow key was pressed. |
| boolean | Returns true if the left-mouse-button was clicked. |
| boolean | Returns true if the page-down key was pressed. |
| boolean | Returns true if the page-up key was pressed. |
| boolean | Returns true if the right-arrow key was pressed |
| boolean | Returns true if the right-mouse-button was clicked. |
| void | Sets the the return value for the event. |
| boolean | shiftKey() Returns true if the shift key was pressed. |
| boolean | spaceKey() Returns true if the space bar was pressed. |
| HTMLElement | Returns handle to the HTML element acted upon (click, mousedown, etc). |
| static void | subscribe(strEventId : String, objHandler : Object | String | function, objFunction : function | String) Subscribes an event handler to events of type strEventId that bubble all the way up to the browser window. |
| boolean | tabKey() Returns true if the tab key was pressed. |
| HTMLElement | Returns handle to the HTML element that was moused over (onmouseover). |
| static void | Unsubscribes an event handler from events of type strEventId that bubble all the way up to the browser window. |
| static void | unsubscribeAll(strEventId : String) Unsubscribes all event handlers from a events of type strEventId that bubble all the way up to the browser window. |
| boolean | upArrow() Returns true if the up-arrow key was pressed. |
| Methods Inherited From jsx3.lang.Object |
|---|
| clone, equals, eval, getClass, getInstanceOf, getInstanceOfClass, getInstanceOfPackage, instanceOf, isInstanceOf, isSubclassOf, jsxmix, jsxsuper, jsxsupermix, setInstanceOf, toString |
| Field Detail |
|---|
beforeunload.blur.change.click.dblclick.error.focus.keydown.keypress.keyup.load.mousedown.mousemove.mouseout.mouseover.mouseup.mousewheel.resize.unload.| Method Detail |
|---|
true if the alt key was pressed.true if the backspace key was pressed.true the ctrl key was pressed.true if the delete key was pressed.true if the down-arrow key was pressed.true if the end key was pressed.true if the enter key was pressed.true if the escape key was pressed.true if the native event object is present (if an event of any type actualy occurred).true if the home key was pressed.true if the insert key was pressed.true if the left-arrow key was pressed.true if the left-mouse-button was clicked.true if the page-down key was pressed.true if the page-up key was pressed.true if the right-mouse-button was clicked.true if the shift key was pressed.true if the space bar was pressed.strEventId that bubble all the way up to the browser window.jsx3.gui.Event.CLICK.true if the tab key was pressed.strEventId that bubble all the way up to the browser window.jsx3.gui.Event.CLICK.strEventId that bubble all the way up to the browser window. jsx3.gui.Event.CLICK.true if the up-arrow key was pressed.