18.1.66 • Published 5 months ago

@guiexpert/react-table v18.1.66

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

ReactTable (GuiExpert Table)

This is the react 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/react-table

Add GuiexpertTable component to a template:

return (
    <>
      <GuiexpertTable
        tableModel={tableModel}
        tableOptions={new TableOptions}
      />
    </>
  );

Import the following classes in your component:

import { GuiexpertTable } from "@guiexpert/react-table";
import {
  GeMouseEvent,
  TableApi
  TableFactory,
  TableModelIf,
  TableOptions,
  TableOptionsIf
} from "@guiexpert/table";

Add a tableModel property and a onTableReady method to the component:

const tableModel: TableModelIf = TableFactory.createTableModel({
  headerData: [
    ['Header 1', 'Header 2']
  ],
  bodyData: [
    ['Text 1a', 'Text 2a'],
    ['Text 1b', 'Text 2b'],
  ]
});  

function onTableReady(api: TableApi) {
  console.info("onTableReady API:", api);
}

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

18.1.62

6 months ago

18.1.63

6 months ago

18.1.64

6 months ago

18.1.65

5 months ago

18.1.66

5 months ago

18.0.13

11 months ago

18.0.14

11 months ago

18.0.16

11 months ago

18.0.17

11 months ago

18.0.18

11 months ago

18.0.19

11 months ago

18.0.20

10 months ago

18.1.55

6 months ago

18.0.21

10 months ago

18.1.56

6 months ago

18.0.22

10 months ago

18.1.57

6 months ago

18.0.23

7 months ago

18.1.58

6 months ago

18.0.24

7 months ago

18.1.59

6 months ago

18.0.25

7 months ago

18.0.26

6 months ago

18.1.60

6 months ago

18.1.61

6 months ago

18.0.11

2 years ago

18.0.12

2 years ago

18.0.10

2 years ago

18.0.9

2 years ago

18.0.8

2 years ago

18.0.7

2 years ago

18.0.6

2 years ago

18.0.5

2 years ago

18.0.4

2 years ago

18.0.3

2 years ago

18.0.2

2 years ago

18.0.1

2 years ago

18.0.0

2 years ago

1.0.6

2 years ago

1.0.5

2 years ago

1.0.2

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

0.0.1

3 years ago