change
fires when a new option is selected
change: (ids: string | number | (string | number)[]) => void;
Parameters:
ids: string | number | array
- the id(s) of a newly selected option(s)
Example
combo.events.on("change", function(id){
// your logic here
});
Related sample: Combobox. Events