Data Views: When and Why?

Hello Brad,
What data view does is making the data available on the clientside - good for small data sources ~ up to 2-3k records.
It loads the data at once and then you can really fast filter, sort or browse through the records clientside - as the data is already loaded.
So if you have small data source there is no need to call the server action (and load the server with a call) every time you wish to sort the data, or filter it.

1 Like