Package Events
QBackspaceKeyEvent | When the Backspace key is pressed with element in focus |
QBlurEvent | Blur event: keyboard focus moving away from the control. |
QCellClickEvent | Class QCellClickEvent An event to detect clicking on a table cell. Lots of things can be determined using this event by changing the JsReturnParam values. When this event fires, the javascript environment will have the following local variables defined: - this: The html object for the cell clicked. - event: The event object for the click. |
QChangeEvent | Be careful with change events for listboxes - they don't fire when the user picks a value on many browsers! |
QClickEvent | Click event: when the control recieves a mouse click |
QContextMenuEvent | Override right clicks |
QDoubleClickEvent | Double-Click event: when the control recieves a double click |
QDownArrowKeyEvent | When the down arrow key is pressed while the element is in focus |
QDragDropEvent | Drop event: When an element is dropped onto another element |
QEnterKeyEvent | When enter key is pressed while the control is in focus |
QEscapeKeyEvent | When the escape key is pressed while the control is in focus |
QEvent | Base class of QEvents. Events are used in conjunction with actions to respond to user actions, like clicking, typing, etc., or even programmable timer events. |
QFocusEvent | Focus event: keyboard focus entering the control. |
QFocusInEvent | added for V2 / jQuery support |
QFocusOutEvent | added for V2 / jQuery support |
QInputEvent | Detects changes to textboxes and other input elements. Responds to cut/paste, search cancel, etc. Ignores arrow keys, etc. Not in IE8 or below. Buggy in IE9. Full support in IE10 and above. No support in Safari 5 and below for textarea elements. |
QJqUiEvent | Class QJqUiEvent: When an event is triggered by jQuery-UI (drag, drop, resize etc.) |
QJqUiPropertyEvent | Class QJqUiPropertyEvent: When properties of a jQuery-UI widget change Currently, Date-Time related jQuery-UI controls are derived from this one |
QKeyDownEvent | When a keyboard key is pressed down (without having been released) while the control is in focus |
QKeyPressEvent | When a keyboard key has been pressed (key went down, and went up) |
QKeyUpEvent | When a pressed key goes up while the focus is on the control |
QMouseDownEvent | Mouse button was pressed down on the control |
QMouseEnterEvent | When the mouse cursor enters the control |
QMouseLeaveEvent | When the mouse cursor leaves the control |
QMouseMoveEvent | When the mouse pointer moves within the control on the browser |
QMouseOutEvent | When the mouse cursor leaves the control and any of its children |
QMouseOverEvent | When the mouse is over the control or an element inside it |
QMouseUpEvent | When the left mouse button is released (after being pressed) from over the control |
QOnEvent | |
QSelectEvent | When the control/element is selected |
QTabKeyEvent | When the Tab key is pressed with element in focus |
QUpArrowKeyEvent | When the up arrow key is pressed while the element is in focus |