This is the Solid component of the GuiExpert Table Project.
npm install @guiexpert/solid-tableThis is the Solid component of the GuiExpert Table Project.
This is the UI-agnostic table component for your next web app. 😊

- Demos
- Documentation
- API
Add the following two NPM packages to your existing react project (run this in your project root directory):
```
npm install --save @guiexpert/table @guiexpert/solid-table
Import the following classes in your component:
``
import { GuiexpertTable } from "@guiexpert/solid-table";
import {
GeMouseEvent,
TableApi
TableFactory,
TableModelIf,
TableOptions,
TableOptionsIf
} from "@guiexpert/table";
Add this code to the component:
`
function App() {
let ref: any;
onMount(() => {
ref.addEventListener("mouseClicked", (e: CustomEvent
ref.addEventListener("mouseMoved", (e: CustomEvent
ref.addEventListener("tableReady", handleTableReady);
});
return (
There are numerous possibilities to create table models.
Please refer to the Documentation for further information or the Demo section for examples.