react-enterprise-table
npm install react-enterprise-table --save
React JS Enterprise Grade Table
- Support Excel Style Filtering
- Excel Style Sorting
- Client Side and Server Side Filtering and Sorting
- Global Search
- Export to CSV
- Upload File with Data
- Add new records, Edit and Delete Records
Coming Features
- Full Documentation with Examples
- Re-Ordering of Rows
- Re-Sizing Columns
- Hierarchical Data Grid
- Pivot Grid
- Batch Edit
- Copy and Paste Data to Grid
Sample to Use
;;const pageData = {if page < 1page = 1;let total = Math;if page > totalpage = total;let from = page - 1 * limitto = page * limit;return data;};{const columns =id: 'fname'dataType: 'text'name: 'Full Name'id: 'dob'dataType: 'date'name: 'Date of Birth'id: 'age'dataType: 'number'name: 'Age';const data = ;for let i = 1; i < 100; i++let dt =age = 35 + i;dt;data;;const pagination =limit: 20totalRows: 99currentPage: 1size: 20 40 60 80 100onPagerClick: pageData;return<div className="App"><Table columns=columns data=data pagination=pagination /></div>;};