Grid Public Interface
Grid Props
This reference lists the props you can pass to the LyteNyte Grid component.
The base type for LyteNyte Grid component props is the generic Grid.Props, which accepts
a GridSpec object. The example shows the GridSpec interface. For a detailed
walkthrough, see the API Extension guide.
export interface GridSpec< Data = unknown, ColExt extends Record<string, any> = object, S extends RowSource<Data> = RowSource, Ext extends Record<string, any> = object,> { readonly data?: Data; readonly column?: ColExt; readonly source?: S; readonly api?: Ext;}Properties
Provide these props to the Grid component to configure the grid.
Grid
Prop
Columns
Prop
Rows
Prop
Row Detail
Prop
Virtualization and Sizing
Prop
Cell Editing
Prop
Cell Selection
Prop
