rowData
RowData is a term used in data grids and tabular UI components to describe the collection of records that populate the rows of a grid. In most implementations, rowData is an array, and each element represents a single row. A row object typically contains fields whose names align with the grid’s column definitions, so a column with field 'name' will render the corresponding value from each row object.
Common data structure and usage
A typical rowData example is an array of objects such as: [{ id: 1, name: 'Alice', age: 30
Loading, updating, and identity
RowData can be provided statically or loaded asynchronously. Grids often support a function to supply a stable
Performance and best practices
For large datasets, grids commonly employ virtualization and pagination, while rowData remains the source of truth