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("toggle").setProperties({
icon: "dxi dxi-eye",
width: "100px",
padding: 20
});
info
The method invokes the afterChangeProperties and beforeChangeProperties events.
It is possible to change values of the following configuration attributes of the Toggle control:
{
css: string,
width: string | number | "content",
height: string | number | "content",
padding: string | number,
full: boolean,
text: string,
icon: string,
offText: string,
offIcon: string,
value: string | number
}
You will find the description of these properties here.