Skip to main content

afterChangeProperties

fires after configuration attributes of a Form control have been changed dynamically

afterChangeProperties: (name: string, properties: object) => void;

Parameters:

  • 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

Example

form.events.on("afterChangeProperties", function(name, properties) {
console.log("afterChangeProperties", name, properties);
});

Change log:

added in v7.0