The List View component for Retool Apps
A list that renders each item from an array of data using a custom-built row of components.
This is a legacy component that is no longer supported. Use the newer version of this component which has more features and functionality.
List View supports unique row keys and displays rows using dynamic or fixed height. Rows can contain any combination of components to customize how data is interacted with or presented.
Settings
LegacyListView includes the following configurable options when building apps in the IDE.
DataDynamic heightForm data keyHeightNameItem heightItem widthLayoutColumnsOverflowPaddingShow borderShow drop shadowstyle |
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.
data
The data.
Type | array | ||||||
Format | Custom data | ||||||
Mutability |
|
direction
The layout of content.
Type | string | ||||||
Mutability |
| ||||||
Allowed Values |
|
dynamicHeightsEnabled
Whether list item height is dynamically set.
Type | boolean | ||||
Mutability |
|
formDataKey
The key used by a Form component to assign default values to input fields using form.initialData
, and to construct the form.data
property.
Type | string | ||||
Format | Plain Text | ||||
Mutability |
| ||||
Default |
|
Examples
table1.selectedRow.id
heightType
Whether the height automatically adjusts to fit content or is a fixed size.
Type | string | ||||||
Format | Plain Text | ||||||
Mutability |
| ||||||
Allowed Values |
| ||||||
Default |
|
hidden
Whether this object is hidden from view.
Type | boolean | ||||||
Format | True/False | ||||||
Mutability |
| ||||||
Default |
|
Examples
true
id
The unique identifier (name).
Type | string | ||||
Format | Plain Text | ||||
Mutability |
| ||||
Default |
|
Examples
query1
button1
layoutType
The layout type.
Type | string | ||||||
Mutability |
| ||||||
Allowed Values |
|
overflowType
The overflow behavior when the contents exceeds the height.
Type | string | ||||||
Mutability |
| ||||||
Allowed Values |
|
Methods
JavaScript API methods for this object. You can write JavaScript almost anywhere in Retool and use methods to manipulate data and property values.
legacyListView.scrollIntoView()
Scrolls the canvas or parent container so that the selected component appears in the visible area.
legacyListView.scrollIntoView(options)
Parameters
options
Required
The scroll options.
Object Properties
behavior
Required
The scroll behavior.
Supported Values
auto | Scroll immediately to the specified position. |
smooth | Scroll gradually to the specified position. |
block
Required
The scroll position relative to the component.
Supported Values
nearest | Scrolls only the minimum amount required for the component to appear in the visible area. Scrolling does not occur if the component is already in view. |
start | Scrolls to position the component at the top of the visible area. |
center | Scrolls to position the component in the middle of the visible area. |
end | Scrolls to position the component at the bottom of the visible area. |
Examples
Scroll the minimum amount to immediately bring legacyListView
into view.
legacyListView.scrollIntoView({behavior: 'auto', block: 'nearest'});
Events
Events triggered by user interactions. Use event handlers to trigger queries or other actions in response to events.