All Projects → nhn → Tui.grid

nhn / Tui.grid

Licence: mit
🍞🔡 The Powerful Component to Display and Edit Data. Experience the Ultimate Data Transformer!

Programming Languages

javascript
184084 projects - #8 most used programming language
typescript
32286 projects
CSS
56736 projects
HTML
75241 projects
Vue
7211 projects

Projects that are alternatives of or similar to Tui.grid

Reactgrid
Add spreadsheet-like behavior to your React app
Stars: ✭ 289 (-84.45%)
Mutual labels:  excel, spreadsheet, datagrid, datatable
Grid
Declarative React Canvas Grid primitive for Data table, Pivot table, Excel Worksheets and more 💥
Stars: ✭ 573 (-69.18%)
Mutual labels:  spreadsheet, grid, datagrid, datatable
ag-grid
The best JavaScript Data Table for building Enterprise Applications. Supports React / Angular / Vue / Plain JavaScript.
Stars: ✭ 8,743 (+370.31%)
Mutual labels:  grid, excel, datatable, datagrid
Functional Data Grid
Data grids in functional style with ReactJS
Stars: ✭ 125 (-93.28%)
Mutual labels:  excel, spreadsheet, grid, datagrid
Vue Handsontable Official
Vue Data Grid with Spreadsheet Look & Feel. Official Vue wrapper for Handsontable.
Stars: ✭ 751 (-59.6%)
Mutual labels:  excel, spreadsheet, grid, datatable
svelte-datagrid
Svelte data grid spreadsheet best best features and performance from excel
Stars: ✭ 48 (-97.42%)
Mutual labels:  grid, spreadsheet, datatable, datagrid
Datatablesbundle
This Bundle integrates the jQuery DataTables plugin into your Symfony application.
Stars: ✭ 334 (-82.03%)
Mutual labels:  grid, datagrid, datatable
Nghandsontable
Official AngularJS directive for Handsontable
Stars: ✭ 438 (-76.44%)
Mutual labels:  excel, spreadsheet, grid
Awesome Grid
A curated list of grid(table) libraries and resources that developers may find useful.
Stars: ✭ 1,142 (-38.57%)
Mutual labels:  spreadsheet, grid, datagrid
Aurelia Slickgrid
Aurelia-Slickgrid a wrapper of the lightning fast & customizable SlickGrid datagrid with a few Styling Themes
Stars: ✭ 100 (-94.62%)
Mutual labels:  grid, datagrid, datatable
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 (-98.44%)
Mutual labels:  grid, datatable, datagrid
React Handsontable
React Data Grid with Spreadsheet Look & Feel. Official React wrapper for Handsontable.
Stars: ✭ 511 (-72.51%)
Mutual labels:  excel, spreadsheet, grid
Datatable
A simple, modern and interactive datatable library for the web
Stars: ✭ 587 (-68.42%)
Mutual labels:  grid, datagrid, datatable
Angular Slickgrid
Angular-Slickgrid is a wrapper of the lightning fast & customizable SlickGrid datagrid, it also includes multiple Styling Themes
Stars: ✭ 298 (-83.97%)
Mutual labels:  grid, datagrid, datatable
Ngx Datatable
✨ A feature-rich yet lightweight data-table crafted for Angular
Stars: ✭ 4,415 (+137.49%)
Mutual labels:  grid, datagrid, datatable
Reogrid
Fast and powerful .NET spreadsheet component, support data format, freeze, outline, formula calculation, chart, script execution and etc. Compatible with Excel 2007 (.xlsx) format and working on .NET 3.5 (or client profile), WPF and Android platform.
Stars: ✭ 532 (-71.38%)
Mutual labels:  excel, spreadsheet, grid
React Spreadsheet Grid
An Excel-like grid component for React with custom cell editors, performant scroll & resizable columns
Stars: ✭ 996 (-46.42%)
Mutual labels:  excel, spreadsheet, grid
Hot Table
Handsontable - Best Data Grid Web Component with Spreadsheet Look and Feel.
Stars: ✭ 114 (-93.87%)
Mutual labels:  excel, spreadsheet, grid
react-datasheet-grid
An Airtable-like / Excel-like component to create beautiful spreadsheets.
Stars: ✭ 227 (-87.79%)
Mutual labels:  grid, excel, spreadsheet
Sheetjs
📗 SheetJS Community Edition -- Spreadsheet Data Toolkit
Stars: ✭ 28,479 (+1431.95%)
Mutual labels:  excel, spreadsheet, grid

TOAST UI Grid

The Powerful Component to Display and Edit Data. Experience the Ultimate Data Transformer!

GitHub release npm GitHub license PRs welcome code with hearth by NHN

tui-grid

🚩 Table of Contents

📦 Packages

The functionality of TOAST UI Grid is available when using the Plain javaScript, React, Vue Component.

🤖 The Toast UI Grid Is an Ultimate Transformer

Data Can Be Displayed in Any Format

Styling

The TOAST UI Grid is a component that can display, edit, add, and delete multiple data. You can append units to the data shown and use html to represent images and links instead of textual data.

style

Summary

The summary function allows you to caculate on multiple rows of data and display the results. It automatically calculates the total sum, the average, the maximum and minimum value, and updates each result whenever the value changes.

summary

Tree Data

Starting with version 3 or later, you can use tree data to represent them in a hierarchy. Now let's process the data we want.

tree

Provides a Custom Editing Elements

In order to edit the data, you don't need to use html to create the editing elements yourself. It supports various input elements such as text, select box, checkbox, radio button. You can set the data editing method just by setting options. You can also show editing elements whatever you want through Custom Editor.

59417111-9e181280-8e01-11e9-8de7-2df819b36354

Simple, Easy to Use Themes

It has three themes: default, striped (zebra pattern), and clean theme. You can easily add the desired design to the themes provided through the theme API. Themes API has been improved since version 3, allowing you to easily control the background color of the header / body area and vertical / horizontal border lines without modifying CSS styles directly. Use the theme to customize your grid.

default striped clean
theme-default theme-striped theme-clean

In addition, a variety of powerful features can be found on the demo page below. 👇👇👇

🎨 Features

🐾 Examples

Here are more examples and play with TOAST UI Grid!

TypeScript

If you are using TypeScript, you must use import module = require('module') to import the Grid module. See "export = " and "import = require()".

import Grid = require('tui-grid');

const instance = new Grid({
  // ...options
});

🌏 Browser Support

Chrome Chrome IE Internet Explorer Edge Edge Safari Safari Firefox Firefox
Yes 9+ Yes Yes Yes

🔧 Pull Request Steps

TOAST UI products are open source, so you can create a pull request(PR) after you fix issues. Run npm scripts and develop yourself with the following process.

Setup

Fork master branch into your personal repository. Clone it to local computer. Install node modules. Before starting development, you should check if there are any errors.

$ git clone https://github.com/{your-personal-repo}/tui.grid.git
$ npm install
$ cd packages/toast-ui.grid
$ npm install
$ npm run test

Develop

Let's start development! You can see your code reflected as soon as you save the code by running a server. Don't miss adding test cases and then make green rights.

Run webpack-dev-server

$ npm start

Run storybook

$ npm run storybook

Run cypress test

$ npm run test

Pull Request

Before uploading your PR, run test one last time to check if there are any errors. If it has no errors, commit and then push it!

For more information on PR's steps, please see links in the Contributing section.

💬 Contributing

🍞 TOAST UI Family

🚀 Used By

📜 License

This software is licensed under the MIT © NHN.

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].