Skip to main content
Version: 2.33.0

List view

List View component allows to create a list of repeatable rows of data. Just like the Container component, you can nest other components inside of it and control how many times they repeat.

ToolJet - List view component
Restricted components

Certain components, namely Calendar and Kanban, are restricted from being placed within the list view component using drag-and-drop functionality.

Setting List Data

To dynamically populate List View components, you can use specific data properties.

Consider this data being passed inside a List View component's List data property:

{{[
{ imageURL: 'https://www.svgrepo.com/show/34217/image.svg', text: 'Sample text 1', buttonText: 'Button 1' },
{ imageURL: 'https://www.svgrepo.com/show/34217/image.svg', text: 'Sample text 1', buttonText: 'Button 2' },
{ imageURL: 'https://www.svgrepo.com/show/34217/image.svg', text: 'Sample text 1', buttonText: 'Button 3' },
]}}

Based on the above data, you can set the Data property of a Text component inside List View using the below code:

{{listItem.text}}

Similarly, for an Image component inside List View, you can use the below code to pass the imageURL value:

{{listItem.imageURL}}

Events

To attach an event handler to the list view component, follow these steps:

  1. Click on the component handle to open its properties on the right sidebar.
  2. Navigate to the Events section.
  3. Click on the +Add handler button.

There are two events that you can use with the List View component:

ToolJet - List view component

Row clicked

The Row clicked event is triggered when any row inside the list view is clicked. Similar to other events in ToolJet, you can define multiple actions for this event.

When a row is clicked in the list view component, certain related data is made available through the selectedRowId and selectedRow variables. For the list view component's available exposed variables, refer to the here section.

danger

The Row clicked event is being deprecated, so it is recommended to use the Record Clicked event instead.

Record clicked

The Record clicked event is similar to the row click event, as it is triggered whenever an interaction is made with a record in the component.

When a record is clicked in the list view component, relevant data is exposed through the selectedRecordId and selectedRecord variables. For the list view component's available exposed variables, refer to the here section.

info

To get detailed information about all the Actions, please consult the Action Reference documentation.

Properties

ToolJet - List view component
PropertiesDescriptionExpected value
List dataThe data that you want to display in the list view component. This can be an array of objects or data from a query that returns an array of objects.An array of objects or a query that returns an array of objects.
ModeThe layout of the list view component. You can choose between List and Grid mode.list or grid
Show bottom borderWhether to show or hide the bottom border on a row. This option is only available when the Mode is set to List.true or false
ColumnsThe number of columns in the list view component. This option is only available when the Mode is set to Grid.Any numerical value
Row heightThe height of each row in the list view component.Any number between 1 and 100
Enable paginationWhether to enable pagination. If enabled, you can set the number of rows per page.true or false
Rows per pageThe number of rows per page. This option is only available when Enable pagination is enabled.Any numerical value
ToolJet - List view component

General

Tooltip

A Tooltip is often used to specify extra information about something when the user hovers the mouse pointer over the component.

Under the General accordion, you can set the value in the string format. Now hovering over the component will display the string as the tooltip.

ToolJet - List view widget

Layout

ToolJet - List view component
LayoutdescriptionExpected value
Show on desktopToggle on or off to display the desktop view.You can programmatically determine the value by clicking on Fx to set the value {{true}} or {{false}}
Show on mobileToggle on or off to display the mobile view.You can programmatically determine the value by clicking on Fx to set the value {{true}} or {{false}}

Styles

ToolJet - List view component
StyleDescription
Background ColorYou can change the background color of the component by entering the Hex color code or choosing a color of your choice from the color picker.
Border ColorYou can change the border color of the listview by entering the Hex color code or choosing a color of your choice from the color picker.
VisibilityThis is to control the visibility of the component. If {{false}} the component will not be visible after the app is deployed. It can only have boolean values i.e. either {{true}} or {{false}}. By default, it's set to {{true}}.
DisableThis property only accepts boolean values. If set to {{true}}, the component will be locked and becomes non-functional. By default, its value is set to {{false}}.
Border radiusUse this property to modify the border radius of the list view. The field expects only numerical value from 1 to 100, default is 0.
info

Any property having Fx button next to its field can be programmatically configured.

Example: Displaying data in the list view

  • Let's start by creating a new app and then dragging the List view component onto the canvas.
ToolJet - List view component
  • Now lets create a query and select the REST API from the datasource dropdown. Choose the GET method and enter the API endpoint - https://reqres.in/api/users?page=1. Save this query and fire it. Inspect the query results from the left sidebar, you'll see that it resulted in the data object having an array of objects.
ToolJet - List view component
  • Now lets edit the List data property of the list view component for displaying the query data. We will use JS to get the data from the query - {{queries.restapi1.data.data}}. Here the last data is a data object that includes an array of objects, the first data is the data resulted from the restapi1 query. This will automatically create the rows in the component using the data.
ToolJet - List view component
  • Finally, we will need to nest components into the first row of list view component and the component will automatically create the subsequent instances. The subsequent rows will appear the same way you'll display the data in the first row.
ToolJet - List view component
tip

Use {{listItem.key}} to display data on the nested components. Example: For displaying the images we used {{listItem.avatar}} where avatar is one of the key in the objects from the query result.

Exposed Variables

ToolJet - List view component
VariablesDescription
dataThis variable stores the data loaded into the list view component. You can retrieve the data of each record in the list view using {{components.listview1.data["0"].text1.text}}
selectedRowId (deprecated)This variable holds the ID of the clicked row in the list view. The row ID starts from 0. You can access the selectedRowId using {{components.listview1.selectedRowId}}
selectedRow (deprecated)This variable contains the data of the components within the selected row. You can access the data using {{components.listview1.selectedRow.text1}}
selectedRecordIdThis variable holds the ID of the clicked record in the list view. The record ID starts from 0. You can access the selectedRecordId using {{components.listview1.selectedRecordId}}
selectedRecordThis variable stores the data of the components within the selected record. You can access the data using {{components.listview1.selectedRecord.text1}}
childrenThis variable stores the data of the components within all the records in listview component. The purpose of exposing children is to enable the child components to be controlled using component specific actions.

Component specific actions (CSA)

There are currently no CSA (Component-Specific Actions) implemented to regulate or control the component.

Controlling child components

All the child components of the list view component are exposed through the children variable. This variable is an array of objects, where each object represents a record in the listview and contains the data of the child components.

ToolJet - List view component

The components inside the list view can be controlled using the javascipt queries. For example, if you want to disable the button1 component in the first record, you can use the following expression:

components.listview1.children[0].button1.disable(true) // disables the button1 component in the first record

caution

Currently, only those child components can be controlled using the javascript queries that have component specific actions implemented. To check if a component has component specific actions implemented, refer to the document of that specific component.