The user can add any user-defined handler to any of the available events. To do this, the user can use the attachEvent() method with the following parameters:
myCombo.attachEvent(evName, evHandler);
Several handlers can be attached to one and the same event, and all of them will be executed.
The names of the events are case-insensitive.
There is a simple way of removing an event-handler:
myCombo.detachEvent(id); // unique id of the event handler
You can find the full list of combo events in the Combo API.
Back to top