Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/valor-software/ng2-table
Simple table extension with sorting, filtering, paging... for Angular2 apps
https://github.com/valor-software/ng2-table
Last synced: 6 days ago
JSON representation
Simple table extension with sorting, filtering, paging... for Angular2 apps
- Host: GitHub
- URL: https://github.com/valor-software/ng2-table
- Owner: valor-software
- License: mit
- Created: 2015-08-27T09:31:44.000Z (over 9 years ago)
- Default Branch: development
- Last Pushed: 2022-10-26T15:57:10.000Z (about 2 years ago)
- Last Synced: 2024-11-30T02:07:43.298Z (13 days ago)
- Language: TypeScript
- Homepage: http://valor-software.github.io/ng2-table/
- Size: 15.8 MB
- Stars: 553
- Watchers: 40
- Forks: 335
- Open Issues: 321
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
- awesome-angular-components - ng2-table - Simple table extension with sorting, filtering, paging... for Angular2 apps. (Uncategorized / Uncategorized)
- awesome-angular - ng2-table - Simple table extension with sorting, filtering, paging... for Angular2 apps. (Uncategorized / Uncategorized)
- awesome-angular-components - ng2-table - Simple table extension with sorting, filtering, paging (Uncategorized / Uncategorized)
- awesome-angular-components - ng2-table - Simple table extension with sorting, filtering, paging... for Angular2 apps. (Uncategorized / Uncategorized)
- awesome-ionic2-components - Sortable/Filter Tables
- Awesome - Sortable/Filter Tables
- awesome-angular-components - valor-software/ng2-table - Simple table extension with sorting, filtering, paging... for Angular2 apps (UI Components / Table)
README
# ng2-table [![npm version](https://badge.fury.io/js/ng2-table.svg)](http://badge.fury.io/js/ng2-table)
Simple table extension with sorting, filtering, paging... for Angular2 appsFollow me [![twitter](https://img.shields.io/twitter/follow/valorkin.svg?style=social&label=%20valorkin)](https://twitter.com/valorkin) to be notified about new releases.
[![Angular 2 Style Guide](https://mgechev.github.io/angular2-style-guide/images/badge.svg)](https://github.com/mgechev/angular2-style-guide)
[![Build Status](https://travis-ci.org/valor-software/ng2-table.svg?branch=master)](https://travis-ci.org/valor-software/ng2-table)
[![Code Climate](https://codeclimate.com/github/valor-software/ng2-table/badges/gpa.svg)](https://codeclimate.com/github/valor-software/ng2-table)
[![Join the chat at https://gitter.im/valor-software/ng2-bootstrap](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/valor-software/ng2-bootstrap?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
[![Dependency Status](https://david-dm.org/valor-software/ng2-table.svg)](https://david-dm.org/valor-software/ng2-table)
[![devDependency Status](https://david-dm.org/valor-software/ng2-table/dev-status.svg)](https://david-dm.org/valor-software/ng2-table#info=devDependencies)
[![Throughput Graph](https://graphs.waffle.io/valor-software/ng2-table/throughput.svg)](https://waffle.io/valor-software/ng2-table/metrics)# Usage & Demo
[http://valor-software.github.io/ng2-table/](http://valor-software.github.io/ng2-table/)- - -
## Installation
1. A recommended way to install ***ng2-table*** is through [npm](https://www.npmjs.com/search?q=ng2-table) package manager using the following command:
```bash
npm i ng2-table --save
```Alternatively, you can [download it in a ZIP file](https://github.com/valor-software/ng2-table/archive/master.zip).
2. More information regarding using of ***ng2-table*** is located in
[demo](http://valor-software.github.io/ng2-table/) and [demo sources](https://github.com/valor-software/ng2-table/tree/master/demo).## Documentation
### Inputs (Properties)
- `page` (`number`) - the default page after the table component loading
- `itemsPerPage` (`number`) - number of the displaying items (rows) on a page
- `maxSize` (`number`) - number of the displaying pages before `...`
- `numPages` (`number`) - total number of the pages
- `length` (`number`) - total number of the items after filtering (of it's chosen)- `config` (`?any`) - config for setup all plugins (filtering, sorting, paging):
- `paging` (`?boolean`) - - switch on the paging plugin
- `sorting` (`?any`) - switch on the sorting plugin
- `columns` (`Array`) - only list of the columns for sorting
- `filtering` (`?any`) - switch on the filtering plugin
- `filterString` (`string`) - the default value for filter
- `columnName` (`string`) - the property name in raw data
- `className` (`string|Array`) - additional CSS classes that should be added to a- `rows` (`?Array`) - only list of the rows which should be displayed
- `columns` (`?Array`) - config for columns (+ sorting settings if it's needed)
- `title` (`string`) - the title of column header
- `name` (`string`) - the property name in data
- `sort` (`?string|boolean`) - config for columns (+ sorting settings if it's needed), sorting is switched on by default for each column
- `className` (`string|Array`) - additional CSS classes that should be added to a column header
- `filtering` (`?any`) - switch on the filtering plugin
- `filterString` (`string`) - the default value for filter
- `columnName` (`string`) - the property name in raw data### Outputs (Events)
- `tableChanged`: data change event handler
- `cellClicked`: onclick event handler### Filter
The responsibility of the filtering issue falls on user. You should choose on which columns the filter would be applied. You could add any number of different filters.
Filter string - it's a string for matching values in raw data. Column name refers to the property name in raw data. The rest logic you could organize by yourself (the order of filters, data formats, etc). Even you could use filter for list of data columns.You can also set up `filtering` param for columns, in this case filter box will appear in first row of the table.
### Sorting
Data sorting could be in 3 modes: asc, desc and without sorting data (as it comes from backend or somewhere else). If you want to switch off the sorting for some of the columns then you should set it forcibly in columns config (set property sort to false value for each column you want)
### Paging
Pagination could be used from [ng2-bootstrap](https://github.com/valor-software/ng2-bootstrap) - [pagination component](http://valor-software.github.io/ng2-bootstrap/#pagination). When the page is changed, the pagination component will emit event `change-table` with an object {page, itemsPerPage}. Then you can easily subscribe on it and request corresponding raw data.
## Troubleshooting
Please follow this guidelines when reporting bugs and feature requests:
1. Use [GitHub Issues](https://github.com/valor-software/ng2-table/issues) board to report bugs and feature requests (not our email address)
2. Please **always** write steps to reproduce the error. That way we can focus on fixing the bug, not scratching our heads trying to reproduce it.Thanks for understanding!
### License
The MIT License (see the [LICENSE](https://github.com/valor-software/ng2-table/blob/master/LICENSE) file for the full text)