row

A row is responsible for displaying data inside an info-table. An info-table can have multiple rows.

The rows of info-table are specified using row tags. Rows act similarly to info component.

Standard Attributes

bind

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.

label

Optional

Type: string

Default: unset

Specify a label to be displayed on the left side of the info-table row.

value

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.

Advanced Attributes

label-color

Optional

Type: string - can be a named color or #HEX value

Default: Primary text color

Specify the color of the label text of the info-table row.

label-icon

Version compatibility

label-icon was introduced in version 4.86.1 of the JourneyApps Runtime to replace left-icon.

Optional

Type: string

Default: unset

Specify the left icon in the row. Find a list of available icons here.

label-icon-color

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 value

Default: unset

Specify the color of the label-icon.

left-icon

Deprecated. See label-icon.

left-icon-color

Deprecated. See label-icon-color.

right-icon

Deprecated. See value-icon.

right-icon-color

Deprecated. See value-icon-color.

show-if and hide-if

show-ifhide-if

value-icon

Version compatibility

value-icon was introduced in version 4.86.1 of the JourneyApps Runtime to replace right-icon.

Optional

Type: string

Default: unset

Specify the right icon of the row. Find a list of available icons here.

value-icon-color

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 value

Default: unset

Specify the color of the value-icon.

value-color

Optional

Type: string - can be a named color or #HEX value

Default: Primary text color

Specify the color of the value text of the info-table row.

Last updated