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("checkbox").events.on("afterChangeProperties", function(properties) {
console.log("afterChangeProperties", properties);
});
Change log:
added in v7.0