Solid integration
Install line, peers, styles, and a minimal import for Solid. Live docs demos open in StackBlitz in one click—no local clone required.
Why Simple Table on Solid
Leverage Solid’s fine-grained reactivity with an adapter designed for the ecosystem—small surface area, explicit peers, and the full Simple Table feature set.
Install
Peer expectations: solid-js 1+
npm install @simple-table/solidStyles
Import the published stylesheet once in your app entry (or a layout component).
import "@simple-table/solid/styles.css";Minimal import surface
import { SimpleTable } from "@simple-table/solid";
import "@simple-table/solid/styles.css";Documentation demos include Open in StackBlitz so you can run and edit a full Solid project in the browser. Start with the quick-start sandbox below.
Simple Table vs other Solid data grids
A Solid.js data grid that respects fine-grained reactivity and ships virtualization, pinning, grouping, and inline editing—free under MIT, no TanStack Solid Table headless wiring.
If you have evaluated any of the libraries below, Simple Table is a drop-in MIT alternative that ships virtualization, pinning, grouping, and inline editing without a Pro license:
- TanStack Solid Table alternative
- Kobalte Table primitive alternative
- Plain <table> alternative
FAQ
- How does this fit Solid’s reactivity?
- The @simple-table/solid adapter is built for Solid’s fine-grained updates. Install peers, import styles once, then compose the grid like other Solid components.
- Is this the same grid as the React package?
- Yes. Every adapter wraps the same simple-table-core engine, so features like sorting, editing, column APIs, and themes behave consistently. You choose the npm package that matches your framework.
- Where can I run a full example without cloning the repo?
- Use the StackBlitz quick start from this hub, or open documentation demos—many include “Open in StackBlitz” for a runnable project in the browser.
- Is there a deeper guide for this stack?
- Read the stack-specific pillar guide at https://www.simple-table.com/blog/solidjs-data-grid-simple-table for install context, patterns, and links back to this hub.