Html
The HTML object allows embedding HTML code directly into a project page.
Attributes
Common
ID
Sets the object's ID.
The ID identifies the object and is used to reference it in UISet actions, allowing to change its attributes dynamically.
The ID is not unique, it can be shared among multiple objects to quickly change a common attribute.
IDs can't be changed with a UISet action, but they can have a Value Binding assigned to them. Value Bindings on IDs allow an object to be dinamically attached to a set of attribute values.
E.g. the following Value Binding switches the ID of the object between mybutton1
and mybutton2
based on the value of the UISet button.address
:
Value binding:
="mybutton" + ui('button', 'address')
UISet:
UISet('button', 'address', '1')
switches the ID to mybutton1
UISet('button', 'address', '2')
switches the ID to mybutton2
Position and Size
Position
Sets the object's position.
The default
value is: x0y0
.
Attribute Values
Value | Description | Example |
---|---|---|
x<left>y<top> | Specify left/top coordinates in pixels. | x10y20 |
Flex Grow
Specifies if the objects should grow to fill the available space.
The default
value is: true
.
Attribute Values
Value | Description |
---|---|
true | Default value. Objects expand to fill the available space. |
false | Objects do not grow to fill the available space. |
Flex Shrink
Specifies if the objects should shrink to fit the available space.
The default
value is: true
.
Attribute Values
Value | Description |
---|---|
true | Default value. Objects shrink to fit the available space. |
false | Objects do not shrink to fit the available space. |
Width
Sets the object's width in pixels.
Minimum value is 1.
The default
value is: auto
.
Height
Sets the object's height in pixels.
Minimum value is 1.
The default
value is: auto
.
Common
HTML
Specifies the HTML code.
Important Considerations:
- Context: The HTML code is inserted directly into the page's DOM. Do not include
html
,head
, orbody
tags. Only elements that are valid within thebody
should be included. - Scripts:
script
tags are executed dynamically. Ensure scripts are well-formed and avoid conflicts with existing page scripts. - Security: Be cautious when using external content or user-provided HTML to prevent XSS vulnerabilities. Sanitize data appropriately.
- Validity: The HTML code must be valid. Unclosed tags or other syntax errors may break the page.
- Performance: Complex HTML structures or inefficient scripts can negatively impact page performance.
Attribute Values
Value | Description | Example |
---|---|---|
<string> | HTML code. | <b>Hello</b> world! |
Template
Specifies an html template to apply to the HTML attribute value.
View
Visible
Sets the object's visibility.
The default
value is: true
.