onChange([callback], [remove])

Class: ComboBox. Method inherited from UIComponent.

Description:

Gets, registers or unregisters a handler function for component's text value change event. Applied to components where text can be changed by user, such as TextField, PasswordField, TextArea, DocumentEditor, ComboBox, Spinner, etc.

Parameters:

Name Type Default Description

[callback]

function

The event handler function that receives a ChangeEvent object. Pass null to unregister all handler functions.

[remove]

boolean

false

Set to true to unregister the event handler.

Returns:

An array of handler functions if no arguments are passed, otherwise this component for method chaining.

Type: this | Array.<function()>

Also See: