1.1.66 • Published 10 months ago

@guiexpert/solid-table v1.1.66

Weekly downloads
-
License
-
Repository
-
Last release
10 months ago

SolidTable (GuiExpert Table)

This is the Solid component of the GuiExpert Table Project.

Become a master at creating web applications with large tables

This is the UI-agnostic table component for your next web app. 😊

Features

  • Handle large datasets easily
  • Excellent performance for large tables by vertical and horizontal virtual scrolling
  • Fully-featured (advanced sorting and filtering)
  • Highly customizable orderData grid
  • Outstanding performance
  • No third-party dependencies
  • UI-agnostic
  • Column Interactions (resize, reorder)
  • Sorting Rows
  • Row, Column, and Range Selection
  • Single and Multi Selection
  • UI-agnostic
  • Row and Column Spanning
  • Fixed Columns (Left and Right)
  • Tree table (Hierarchical View)
  • Accessibility support: Keyboard Shortcuts
  • Custom Filtering
  • In-place Cell Editing
  • Userdefined Key and Mouse Events
  • Customizable Look & Feel (via CSS variables)
  • Row sorting
  • Column Reordering (Drag and Drop)
  • State Persistence (Row Sorting, Column Order, Selection)
  • Customizable Cell Contents via Renderer for Header, Body and Footer
  • Full control over the HTML structure and style

Links

Get Started

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<GeMouseEvent>) => console.info(e));
    ref.addEventListener("mouseMoved", (e: CustomEvent<GeMouseEvent>) => document.title = e.detail.rowIndex + "/" + e.detail.columnIndex);
    ref.addEventListener("tableReady", handleTableReady);
  });

  return (
    <div ref={ref}>
      <GuiexpertTable
        tableModel={tableModel}
        tableOptions={tableOptions} />
    </div>
  );
}
function handleTableReady(api: any) {
  console.info("Table API:", api.detail);
}

There are numerous possibilities to create table models. Please refer to the Documentation for further information or the Demo section for examples.

1.0.26

1 year ago

1.0.25

1 year ago

1.0.29

1 year ago

1.0.28

1 year ago

1.0.33

1 year ago

1.0.32

1 year ago

1.0.31

1 year ago

1.0.30

1 year ago

1.0.37

12 months ago

1.0.36

12 months ago

1.0.35

1 year ago

1.0.34

1 year ago

1.0.39

10 months ago

1.0.38

11 months ago

1.1.56

10 months ago

1.1.55

10 months ago

1.1.59

10 months ago

1.1.58

10 months ago

1.1.57

10 months ago

1.1.63

10 months ago

1.1.62

10 months ago

1.1.61

10 months ago

1.1.60

10 months ago

1.1.66

10 months ago

1.1.65

10 months ago

1.1.64

10 months ago

1.0.24

2 years ago

1.0.23

2 years ago

1.0.22

2 years ago

1.0.21

2 years ago

1.0.19

2 years ago

1.0.18

2 years ago

1.0.17

2 years ago

1.0.16

2 years ago

1.0.20

2 years ago

1.0.15

2 years ago

1.0.14

2 years ago

1.0.13

2 years ago

1.0.12

2 years ago

1.0.11

2 years ago

1.0.10

2 years ago

1.0.9

2 years ago

1.0.8

2 years ago

1.0.7

2 years ago

1.0.6

2 years ago

1.0.5

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago