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