Skip to main content

The Key Value component for Retool Mobile

A content area for key-value data.

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.

allowTextWrapping

Whether to wrap text.

Type boolean
Format True/False
Mutability
ControlUsage
Retool UI Inspector
Default
false
Examples
true

data

The data.

Type array
Format Custom data
Mutability
ControlUsage
Retool UI Inspector
MethodcopyToClipboard()

direction

The layout of content.

Type string
Mutability
ControlUsage
Retool UI Inspector
Allowed Values
ValueDescription
row

Horizontal row layout.

column

Vertical column layout.


header

The title text to display.

Type string
Mutability
ControlUsage
Retool UI Inspector

hidden

Whether this object is hidden from view.

Type boolean
Format True/False
Mutability
ControlUsage
Retool UI Inspector > Appearance
MethodsetHidden()
Default
false
Examples
true

rowVisibility

A list of visible rows.

Type object
Mutability
ControlUsage
Retool UI Inspector

showSeparator

Whether the show a separating line betweeen items.

Type boolean
Mutability
ControlUsage
Retool UI Inspector

valueHorizontalAlignment

The text alignment of values.

Type string
Mutability
ControlUsage
Retool UI Inspector
Allowed Values
ValueDescription
left

Align left.

right

Align right.


valueWidth

The width of the value column.

Type string
Mutability
ControlUsage
Retool UI Inspector
Allowed Values
ValueDescription
75%

75% width.

50%

50% width.

25%

25% width.


Methods

JavaScript API methods for this object. You can write JavaScript almost anywhere in Retool and use methods to manipulate data and property values.

keyValue.setHidden()

Set the hidden value to toggle whether the component is visible. Defaults to true without a parameter.

Definition
keyValue.setHidden(hidden)
Parameters

hidden

boolean

Whether this object is hidden from view.

Examples

Hide keyValue.

keyValue.setHidden(true);

Unhide keyValue.

keyValue.setHidden(false);

Events

Events triggered by user interactions. Use event handlers to trigger queries or other actions in response to events.