HTML
A content area to embed HTML and CSS markup.
HTML supports most HTML tags and presentational attributes. Scripting is not supported but event handlers are available.
Properties
All properties for this object with supported data types or values. You can write JavaScript almost anywhere in Retool to manipulate or read property values.
clickable
Whether there is an enabled Click event handler.
Type | boolean | ||||
Format | True/False | ||||
Mutability |
| ||||
Default |
|
Examples
hidden
Whether this object is hidden from view.
Type | boolean | ||||||
Format | True/False | ||||||
Mutability |
| ||||||
Default |
|
Examples
id
The unique identifier (name).
Type | string | ||||
Format | Plain Text | ||||
Mutability |
| ||||
Default |
|
Examples
Events
Events triggered by user interactions. Use event handlers to trigger queries or other actions in response to events.
To attach an event handler to a specific element in the HTML, add a data-<event type>-target
attribute. For example:
Click event handler
<button data-click-target="primary">Trigger event</button>