row
A
row
is responsible for displaying data inside an info-table
. An info-table
can have multiple row
s.Optional
Type:
string
Default: unset
The variable or field's value which should be displayed on the right hand side of the
info-table
row.main.view.xml
<info-table>
<row label="Job Title" bind="view_variable" />
</info-table>
Note: when binding to a field the field's label will automatically be used. Specify
label=""
to override this behavior.Optional
Type:
string
Default: unset
Specify a label to be displayed on the left side of the
info-table
row.main.view.xml
<info-table>
<row label="Job Title" />
<row label="Job description" />
</info-table>

Optional
Type:
string
Default: unset
Specify the text to display on the right side of the
info-table
row. This is an alternative to using the bind
attribute.main.view.xml
<info-table>
<row label="Job Title" value="Text based value for row" />
<row label="Job Description" value="Text based value for row" />
</info-table>

Optional
Type:
string
- can be a named color or #HEX valueDefault: Primary text color
main.view.xml
<info-table>
<row label="Job Title" label-color="#ff6f00" />
<row label="Job Description" label-color="#ff6f00" />
</info-table>

Version compatibility
Optional
Type:
string
Default: unset
main.view.xml
<info-table>
<row label="Job Title" value="Text based value for row" label-icon="fa-star" />
<row label="Job Description" value="Text based value for row" label-icon="fa-star" left-icon-color="#1e88e5" />
</info-table>

Version compatibility
label-icon-color
was introduced in version 4.86.1 of the JourneyApps Runtime to replace left-icon-color
.Optional
Type:
string
- can be a named color or #HEX valueDefault: unset
Specify the color of the
label-icon
. main.view.xml
<info-table>
<row label="Job Description" value="Text based value for row" label-icon="fa-star" label-icon-color="#1e88e5" />
</info-table>
Deprecated
left-icon
is deprecated since version 4.86.1 of the JourneyApps Runtime.Deprecated
left-icon-color
is deprecated since version 4.86.1 of the JourneyApps Runtime.Deprecated
right-icon
is deprecated since version 4.86.1 of the JourneyApps Runtime.Deprecated
right-icon-color
is deprecated since version 4.86.1 of the JourneyApps Runtime.Version compatibility
Optional
Type:
string
Default: unset
main.view.xml
<info-table>
<row label="Job Title" value="Text based value for row" value-icon="fa-star" value-icon-color="#ff6f00" />
<row label="Job Description" value="Text based value for row" value-icon="fa-star" value-icon-color="#ff6f00" />
</info-table>

Version compatibility
value-icon-color
was introduced in version 4.86.1 of the JourneyApps Runtime to replace right-icon-color
.Optional
Type:
string
- can be a named color or #HEX valueDefault: unset
Specify the color of the
value-icon
. main.view.xml
<info-table>
<row label="Job Description" value="$:{asset.description}" value-icon="fa-star" value-icon-color="#1e88e5" />
</info-table>

Optional
Type:
string
- can be a named color or #HEX valueDefault: Primary text color
main.view.xml
<info-table>
<row label="Job Title" value="Text based value for row" value-color="#1e88e5" />
<row label="Job Description" value="Text based value for row" value-color="#1e88e5" />
</info-table>

Last modified 5mo ago