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