afterChangeProperties
fires after configuration attributes of the control have been changed dynamically
afterChangeProperties: (properties: object) => void;
Parameters:
properties: object
- an object with configuration attributes of the control and their new values
Example
form.getItem("toggle").events.on("afterChangeProperties", function(properties) {
console.log("afterChangeProperties", properties);
});