setProperties()
allows changing available configuration attributes of the control dynamically
setProperties(propertyConfig: IBaseLayoutItem): void;
Parameters:
propertyConfig: object
- an object with the available attributes of the control and their new values
Example
form.getItem("spacer").setProperties({
height: "50px"
});
The method invokes the afterChangeProperties and beforeChangeProperties events.
It is possible to change values of the following configuration attributes of the Spacer control:
width | (string|number|"content") the width of a control |
padding | (string|number) sets padding between a cell and a border of the Spacer control |
height | (string|number|"content") the height of a control |
css | (string) adds style classes to a control |
Change log:
added in v7.0