fires before configuration attributes of a Form control are changed dynamically
name|id | string | the name (or id, if the name is not specified) of the Form control |
properties | object | an object with configuration attributes of the control and their new values |
boolean | false - to cancel the default action of the event, otherwise true |
form.events.on("BeforeChangeProperties", function(name, properties) {
console.log("BeforeChangeProperties", name, properties);
return true;
});
added in v7.0
Back to top