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?
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
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
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.
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
Thanks everyone !