All Projects → komarovalexander → Ka Table

komarovalexander / Ka Table

Licence: mit
Lightweight MIT React Table component for both TS and JS with Sorting, Filtering, Grouping, Virtualization, Editing and many more

Programming Languages

javascript
184084 projects - #8 most used programming language
typescript
32286 projects
js
455 projects
ts
41 projects

Projects that are alternatives of or similar to Ka Table

Grid
Declarative React Canvas Grid primitive for Data table, Pivot table, Excel Worksheets and more 💥
Stars: ✭ 573 (+389.74%)
Mutual labels:  grid, table, datagrid, datatable
Datatable
A simple, modern and interactive datatable library for the web
Stars: ✭ 587 (+401.71%)
Mutual labels:  grid, table, datagrid, datatable
Datatablesbundle
This Bundle integrates the jQuery DataTables plugin into your Symfony application.
Stars: ✭ 334 (+185.47%)
Mutual labels:  grid, table, datagrid, datatable
React Table
⚛️ Hooks for building fast and extendable tables and datagrids for React
Stars: ✭ 15,739 (+13352.14%)
Mutual labels:  grid, table, datagrid, datatable
Ngx Datatable
✨ A feature-rich yet lightweight data-table crafted for Angular
Stars: ✭ 4,415 (+3673.5%)
Mutual labels:  grid, table, datagrid, datatable
ag-grid
The best JavaScript Data Table for building Enterprise Applications. Supports React / Angular / Vue / Plain JavaScript.
Stars: ✭ 8,743 (+7372.65%)
Mutual labels:  grid, table, datatable, datagrid
Angular Slickgrid
Angular-Slickgrid is a wrapper of the lightning fast & customizable SlickGrid datagrid, it also includes multiple Styling Themes
Stars: ✭ 298 (+154.7%)
Mutual labels:  grid, datagrid, datatable
Tabulator
Interactive Tables and Data Grids for JavaScript
Stars: ✭ 4,329 (+3600%)
Mutual labels:  widget, grid, table
Aurelia Slickgrid
Aurelia-Slickgrid a wrapper of the lightning fast & customizable SlickGrid datagrid with a few Styling Themes
Stars: ✭ 100 (-14.53%)
Mutual labels:  grid, datagrid, datatable
ng-mazdik
Angular UI component library
Stars: ✭ 86 (-26.5%)
Mutual labels:  grid, table, datatable
Gijgo
Gijgo - Free Javascript Controls
Stars: ✭ 424 (+262.39%)
Mutual labels:  grid, table, datagrid
React Datasheet
Excel-like data grid (table) component for React
Stars: ✭ 4,866 (+4058.97%)
Mutual labels:  component, grid, table
React Tabulator
React Tabulator is based on tabulator - a JS table library with many advanced features.
Stars: ✭ 295 (+152.14%)
Mutual labels:  component, grid, table
Reactgrid
Add spreadsheet-like behavior to your React app
Stars: ✭ 289 (+147.01%)
Mutual labels:  table, datagrid, datatable
Material Table
Datatable for React based on material-ui's table with additional features
Stars: ✭ 3,198 (+2633.33%)
Mutual labels:  table, datagrid, datatable
Vue2 Datatable
The best Datatable for Vue.js 2.x which never sucks. Give us a star 🌟 if you like it! (DEPRECATED. As I, @kenberkeley, the only maintainer, no longer works for OneWay. Bugs may be fixed but new features or breaking changes might not be merged. However, it's still the best in my mind because of its extremely flexible usage of dynamic components)
Stars: ✭ 867 (+641.03%)
Mutual labels:  grid, table, datatable
Canvas Datagrid
Canvas based data grid web component. Capable of displaying millions of contiguous hierarchical rows and columns without paging or loading, on a single canvas element.
Stars: ✭ 798 (+582.05%)
Mutual labels:  component, datagrid, datatable
Smart Webcomponents
Web Components & Custom Elements for Professional Web Applications
Stars: ✭ 110 (-5.98%)
Mutual labels:  ui-components, grid, datagrid
slickgrid-universal
Slickgrid-Universal is a monorepo which includes all Editors, Filters, Extensions, Services and is Framework Agnostic to take full advantage of SlickGrid core lib.
Stars: ✭ 29 (-75.21%)
Mutual labels:  grid, datatable, datagrid
Vue Grid
A flexible grid component for Vue.js
Stars: ✭ 113 (-3.42%)
Mutual labels:  component, grid, table

GitHub license npm version Coverage Status Build Status minzipped size

The customizable, extendable, lightweight and free React Table Component

Site | Demos | Docs

Table Demo link

Installation

npm

npm install ka-table

yarn

yarn add ka-table

Usage

Basic example

import "ka-table/style.css";

import React, { useState } from 'react';

import { ITableProps, kaReducer, Table } from 'ka-table';
import { DataType, EditingMode, SortingMode } from 'ka-table/enums';
import { DispatchFunc } from 'ka-table/types';

const dataArray = Array(10).fill(undefined).map(
  (_, index) => ({
    column1: `column:1 row:${index}`,
    column2: `column:2 row:${index}`,
    column3: `column:3 row:${index}`,
    column4: `column:4 row:${index}`,
    id: index,
  }),
);

const tablePropsInit: ITableProps = {
  columns: [
    { key: 'column1', title: 'Column 1', dataType: DataType.String },
    { key: 'column2', title: 'Column 2', dataType: DataType.String },
    { key: 'column3', title: 'Column 3', dataType: DataType.String },
    { key: 'column4', title: 'Column 4', dataType: DataType.String },
  ],
  data: dataArray,
  editingMode: EditingMode.Cell,
  rowKeyField: 'id',
  sortingMode: SortingMode.Single,
};

const OverviewDemo: React.FC = () => {
  const [tableProps, changeTableProps] = useState(tablePropsInit);
  const dispatch: DispatchFunc = (action) => {
    changeTableProps((prevState: ITableProps) => kaReducer(prevState, action));
  };

  return (
    <Table
      {...tableProps}
      dispatch={dispatch}
    />
  );
};

export default OverviewDemo;

Example link

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].