change
fires on changing the value of a control
change: (value: string | boolean) => void;
Parameters:
value: string | boolean
- the current value of the control
Example
form.getItem("checkbox").events.on("change", function(value) {
console.log("change", value);
});
Change log:
added in v7.0