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