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