LyteNyte Grid logo for light mode. Links back to the documentation home page.
Github repository for this project. 1771 Technologies home page
Grid Public Interface

Column

Columns define how the grid renders content. This reference lists supported column properties.

Extending Columns

In addition to the properties LyteNyte Grid supports out of the box, you can extend a column definition with additional properties specific to your application. The code below shows a brief example:

interface GridSpec {
readonly column: { sort: "asc" | "desc" | null };
}
type Column = Grid.Column<GridSpec>;
const columns: Column[] = [
{ id: "bank", sort: "asc" },
// ...
];

Column Properties

Prop