Skip to main content

Event handling

Attaching event listeners

The user can add any user-defined handler to any of the available events. To do this, the user can use the combo.events.on() method with the following parameters:

evNamename of the event
evHandleruser-defined event handler
combo.events.on("open", function() {
// your logic here
});

Several handlers can be attached to one and the same event, and all of them will be executed.

note

The names of the events are case-insensitive.

Related sample: Combobox. Events

Detaching event listeners

There is a simple way of removing an event handler via the combo.events.detach() method:

combo.events.on("open", function() {
// your logic here
});

combo.events.detach("open");

Calling events

To call events, use combo.events.fire():

combo.events.fire("name",args);
// where args is an array of arguments

List of supported events

You can find the full list of ComboBox events in the API Reference.