jsx3.gui.SelectAPI


Before SelectFires after the user makes a selection and before the state of this select control is updated.
DestroyFires after this select control is removed from the DOM.
Key DownFires after a browser keydown event when this select control has focus.
Key UpFires after a keyup event when this select control has focus.
SelectFires after the user makes a selection.

Before Selectjsxbeforeselect

Fires after the user makes a selection and before the state of this select control is updated. Canceling this event prevents the change of state of the select control.
Cancelable: Evaluate to false to cancel event.

Context Variables

this {jsx3.gui.Select} - the object that publishes this event.
objEVENT {jsx3.gui.Event} - the browser event that triggers this event.
strRECORDID {String} - the CDF jsxid of the selected record.

Selectjsxselect

Fires after the user makes a selection.

Context Variables

this {jsx3.gui.Select} - the object that publishes this event.
objEVENT {jsx3.gui.Event} - the browser event that triggers this event.
strRECORDID {String} - the CDF jsxid of the selected record.

Key Downjsxkeydown

Fires after a browser keydown event when this select control has focus.

Context Variables

this {jsx3.gui.Select} - the object that publishes this event.
objEVENT {jsx3.gui.Event} - the browser event that triggers this event.

Key Upjsxkeyup

Fires after a keyup event when this select control has focus.

Context Variables

this {jsx3.gui.Select} - the object that publishes this event.
objEVENT {jsx3.gui.Event} - the browser event that triggers this event.

Destroyjsxdestroy

Fires after this select control is removed from the DOM.

Context Variables

this {jsx3.gui.Select} - the object that publishes this event.
objPARENT {jsx3.app.Model} - the parent of this select control before it is removed from the DOM.