273
Views
5
Comments
Solved
Table Empty message

Hi outsystemsor, is there any shortcut to show 1 row all cells merged message in table when the table has no any data in or I must use Javascript?

2026-03-12 06-20-48
KUNDAN CHAUHAN
Champion
Solution

Hi Ngoc ,

Table take a source as a list.

we can check if list is empty ,if list is empty then we perform our logic as we want.

Thanks  


2020-11-25 10-45-32
Mostafa Othman
Champion
Solution

Hi Ngoc,

You can add If widget to your screen based on condition List.Empty (List is list of data you assign to source of table) if true you can add label with text that shows no data retrieved if false you can display your table with data 

2022-08-03 04-32-50
Ravi Punjwani
Solution

Hi Ngoc,

You don't need a javascript for this.

Just create a container with a nice design that you want to display when there are no records in your table. Wrap it under an IF condition "GetXyzRecords.List.Empty and GetXyzRecords.IsDataFetched"

This will make sure you display the empty list only when the data fetch is completed. Without IsDataFetched condition, it would display empty records message even while the data is currently being fetched, which brings down the user experience.

2024-12-19 07-54-27
Aditya Chinchole
Solution

Hi,

You need to do it like this :

In IsEmpty, give condition as - 

Getabc.IsDataFetched and Getabc.List.Empty

This you can easily get when you do scaffolding.

Regards,

Aditya

2026-03-12 06-20-48
KUNDAN CHAUHAN
Champion
Solution

Hi Ngoc ,

Table take a source as a list.

we can check if list is empty ,if list is empty then we perform our logic as we want.

Thanks  


2020-11-25 10-45-32
Mostafa Othman
Champion
Solution

Hi Ngoc,

You can add If widget to your screen based on condition List.Empty (List is list of data you assign to source of table) if true you can add label with text that shows no data retrieved if false you can display your table with data 

2022-08-03 04-32-50
Ravi Punjwani
Solution

Hi Ngoc,

You don't need a javascript for this.

Just create a container with a nice design that you want to display when there are no records in your table. Wrap it under an IF condition "GetXyzRecords.List.Empty and GetXyzRecords.IsDataFetched"

This will make sure you display the empty list only when the data fetch is completed. Without IsDataFetched condition, it would display empty records message even while the data is currently being fetched, which brings down the user experience.

2024-12-19 07-54-27
Aditya Chinchole
Solution

Hi,

You need to do it like this :

In IsEmpty, give condition as - 

Getabc.IsDataFetched and Getabc.List.Empty

This you can easily get when you do scaffolding.

Regards,

Aditya

2024-06-11 16-02-22
Nguyen Ngoc Nam

Thanks everyone !

Community GuidelinesBe kind and respectful, give credit to the original source of content, and search for duplicates before posting.