LyteNyte Grid is an incredibly fast React Data Grid. It offers full extensibility, memory efficiency, and a small bundle size compared to other data grids. This guide walks you through creating an app using LyteNyte Grid.
In this guide, you'll:
The demo below is the end result of this getting started guide. If you prefer to dive directly into the completed code, fork a working demo by clicking the stackblitz icon in the code frame below.
LyteNyte Grid comes in two editions:
Core
: Free core functionality available under an Apache 2.0 LicenseEnterprise
: Advanced version with enterprise-grade featuresThis guide works with either edition. If you already have a valid LyteNyte Grid license, we recommend installing the Enterprise edition. The enterprise edition may be used without a license but a watermark will appear on the page.
pnpm add @1771technologies/lytenyte-grid-enterprise
pnpm add @1771technologies/lytenyte-grid-core
The demo example uses a sample dataset from the @1771technologies/sample-data
package,
freely available under Apache 2.0.
pnpm add @1771technologies/sample-data
If you don't have a React project setup yet, we recommend using Vite. Get started quickly with:
pnpm create vite
For more information, check the Vite getting started docs.
LyteNyte Grid uses virtualization for maximum performance, with both rows and columns virtualized. This approach requires a sized container—a DOM element that occupies space even without child nodes.
The simplest approach is setting the height
style on the element, which we'll do in this guide. For more information about sized containers, see our dedicated Sized Container guide.
First, define your component with a sized container:
export function MyLyteNyteGridComponent() {
return <div style={{ height: 500 }}></div>;
}
Next we will import LyteNyteGrid
, prepare your data, and define columns to specify what the grid should display.
This demo uses sample data from the @1771technologies/sample-data
package, but feel free to use your own dataset.
LyteNyte Grid has a modular design to minimize bundle size. The minimal setup requires two imports:
useLyteNyte
: A hook that initializes grid state and provides both declarative and imperative interfacesLyteNyteGrid
: A React renderer that displays data in the DOMThe useLyteNyte
hook works similarly to React's useState
. The provided value only initializes the
grid's state, and changes to the object won't affect the initial value.
import {
LyteNyteGrid,
useLyteNyte,
} from "@1771technologies/lytenyte-grid-enterprise";
export function MyLyteNyteGridComponent() {
const grid = useLyteNyte({
id: "my-grid", // A unique id is the only required property
// We'll add more properties later
});
return (
<div style={{ height: 500 }}>
<LyteNyteGrid grid={grid} />
</div>
);
}
LyteNyte Grid requires specific CSS to function properly. Add the following import somewhere in your application:
import "@1771technologies/lytenyte-grid-enterprise/css";
The best location is your application's root file—in a Vite template, this would be main.tsx
,
or in NextJS, the root layout.tsx
file.
LyteNyte Grid retrieves data from a row data source. While several types exist, the most common is client data, which works when all required data is available (or can be fetched) in the browser.
Here we import the useClientDataSource
hook and provide it with our bankData
sample data object.
import {
LyteNyteGrid,
useLyteNyte,
useClientDataSource,
} from "@1771technologies/lytenyte-grid-enterprise";
import { bankData } from "@1771technologies/sample-data";
export function MyLyteNyteGridComponent() {
const ds = useClientDataSource({ data: bankData });
const grid = useLyteNyte({
id: "my-grid",
rowDataSource: ds,
});
return (
<div style={{ height: 500 }}>
<LyteNyteGrid grid={grid} />
</div>
);
}
The Core
edition only supports client data source, which is built-in and doesn't
require a separate hook. If you're using the free Core
edition,
provide data directly to the grid:
const grid = useLyteNyte({
id: "my-grid",
rowDataSource: { kind: "client", data: bankData },
});
The minimal column in LyteNyte Grid is an object with an id
field. Columns serve two purposes:
Start by defining your columns:
const columns = [
{ id: "age" },
{ id: "job" },
{ id: "marital" },
{ id: "education" },
{ id: "balance" },
];
Now provide these columns to the grid:
export function MyLyteNyteGridComponent() {
const ds = useClientDataSource({ data: bankData });
const grid = useLyteNyte({
id: "my-grid",
rowDataSource: ds,
columns: columns,
});
// Rest of the code remains the same
}
This completes the minimal setup. To enhance functionality, make columns sortable, movable, and resizable by providing a columnBase
object that defines default settings for all columns:
export function MyLyteNyteGridComponent() {
const ds = useClientDataSource({ data: bankData });
const grid = useLyteNyte({
id: "my-grid",
rowDataSource: ds,
columns: columns,
columnBase: { sortable: true, movable: true, resizable: true },
});
// Rest of the code remains the same
}
LyteNyte Grid offers many more capabilities beyond what we've covered in this guide. Here are some topics you might want to explore next: