setProp()

Sets the value of the specified widget property.

For widgets built with a self-hosted custom element, properties are bound to the element's attributes. Updating a widget property triggers the custom element's attributeChangedCallback() function.

Syntax

Copy

Parameters

NameTypeDescription
propNamestringName of the property that you want to set.
valuestringValue of the property that you want to set.

Returns

Promise<void>

Example

Copy
Did this help?