change
fires on changing the value of a control
change: (ids: (string | number) | (string | number)[]) => void;
Parameters:
ids: string | number | (string | number)[]
- the ID(s) of newly selected option(s) from data collection
Example
form.getItem("combo").events.on("change", function(ids) {
console.log("change", ids);
});
Change log:
added in v7.0