LyteNyte Grid's client data source is designed for scenarios where all grid data can be loaded into the browser. This data source operates with the assumption that the complete dataset is available on the client side. While it's the simplest of the available data sources, it's also the most feature-rich.
The LyteNyte Grid package exports the useClientRowDataSource
hook for creating a client data
source. This hook accepts the initial row data and returns an object that implements the
RowDataSourceEnterprise
interface. For detailed information about this interface, please refer
to the API Reference.
You can provide the client data source with data for top and bottom pinned rows. These rows remain fixed at the top and bottom of the grid respectively, staying visible even as users scroll through the main dataset.
The built-in filters and sort comparators in the client row data source work with native JavaScript
Date
objects when handling date columns. Since your column data is unlikely to already be Date
objects, the client row data source accepts filterToDate
and sortToDate
parameters that convert
values from a given column into proper Date objects.
LyteNyte Grid's API doesn't provide a direct method to retrieve all data from the grid, as different
data sources have different loading mechanisms and restrictions. However, the client row data source
includes a data
function that you can call to access all available data in the source.