jsx3.gui.TextBoxAPI
| Blur | Fires after this text box loses focus. |
| Change | Fires after the user edits the value of this text box and this text box loses focus. |
| Destroy | Fires after this text box is removed from the DOM. |
| Double-Click | Fires after the user double-clicks this text box. |
| Execute | Fires after the user presses the Enter key while this text box has focus. |
| Focus | Fires after this text box gains focus. |
| Incr. Change | Fires after each key event that changes the value of this text box. |
| Key Down | Fires after a browser keydown event while this text box has focus. |
| Key Press | Fires after a browser keypress event while this text box has focus. |
| Key Up | Fires after a browser keyup event while this text box has focus. |
| Menu | Fires after the user right-clicks this text box and before the bound context menu displays. |
| Mouse Wheel | Fires after the user uses the mouse scroll wheel while the mouse is over this text box. |
Fires after the user presses the Enter key while this text box has focus.
Context Variables
objEVENT {
jsx3.gui.Event} - the browser event that triggers this event.
Fires after a browser keypress event while this text box has focus.
Context Variables
objEVENT {
jsx3.gui.Event} - the browser event that triggers this event.
Fires after a browser keydown event while this text box has focus.
Context Variables
objEVENT {
jsx3.gui.Event} - the browser event that triggers this event.
Fires after a browser keyup event while this text box has focus.
Context Variables
objEVENT {
jsx3.gui.Event} - the browser event that triggers this event.
Fires after the user edits the value of this text box and this text box loses focus. Canceling this event prevents the edit from occurring.
Cancelable: Evaluate to false to cancel event.
Context Variables
objEVENT {
jsx3.gui.Event} - the browser event that triggers this event.
strPREVIOUS {
String} - the value before the text box receives focus.
strVALUE {
String} - the new value.
Fires after each key event that changes the value of this text box. This event fires only once after a key is held down to produce multiple characters. Canceling this event prevents the edit from occurring.
Cancelable: Evaluate to false to cancel event.
Context Variables
objEVENT {
jsx3.gui.Event} - the browser event that triggers this event.
strPREVIOUS {
String} - the value before the last key event.
strVALUE {
String} - the incrementally changed value.
Fires after the user uses the mouse scroll wheel while the mouse is over this text box.
Context Variables
objEVENT {
jsx3.gui.Event} - the browser event that triggers this event.
Fires after the user right-clicks this text box and before the bound context menu displays. Canceling this event prevents the menu from displaying.
Cancelable: Evaluate to false to cancel event.
Context Variables
objEVENT {
jsx3.gui.Event} - the browser event that triggers this event.
Return Fields
objMENU {
jsx3.gui.Menu} - use this field to override the default menu with an instance of
jsx3.gui.Menu.
Fires after this text box loses focus.
Context Variables
objEVENT {
jsx3.gui.Event} - the browser event that triggers this event.
Fires after this text box gains focus.
Context Variables
objEVENT {
jsx3.gui.Event} - the browser event that triggers this event.
Fires after the user double-clicks this text box.
Context Variables
objEVENT {
jsx3.gui.Event} - the browser event that triggers this event.
Fires after this text box is removed from the DOM.
Context Variables
objPARENT {
jsx3.app.Model} - the parent of this text box before it is removed from the DOM.
Copyright © 2001-2007, TIBCO Software Inc.