RowModel

class RowModel<TData>(val rows: List<Row<TData>>, val flatRows: List<Row<TData>>, val rowsById: Map<String, Row<TData>>)

A computed view of the table's rows.

rows is the (possibly nested) row tree. flatRows is every row in iteration order. rowsById indexes every row by its id for O(1) lookup.

Constructors

Link copied to clipboard
constructor(rows: List<Row<TData>>, flatRows: List<Row<TData>>, rowsById: Map<String, Row<TData>>)

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard