setProperties()
allows changing available configuration attributes of the control dynamically
setProperties(properties: object): void;
Parameters:
properties: object
- an object with the available attributes of the control and their new values
Example
form.getItem("button").setProperties({
size: "small",
view: "link"
});
info
The method invokes the afterChangeProperties and beforeChangeProperties events.
It is possible to change values of the following configuration attributes of the Button control:
{
circle: boolean,
color: string,
css: string,
full: boolean,
height: string|number|"content",
icon: string,
loading: boolean,
padding: string|number,
size: string,
submit: boolean,
text: string,
url: string,
view: string,
width: string|number|"content",
}
You will find the description of these properties here.
Change log:
added in v7.0