input
fires on typing text in an input of Combobox
input: (value: string) => void;
Parameters:
value: string
- an entered value
Example
combobox.events.on("input", function(value) {
console.log("You've entered: " + value);
});
Related sample: Combobox. Events