1
0
Fork 0
mirror of https://github.com/koalyptus/TableFilter.git synced 2024-06-11 02:12:24 +02:00
Go to file
koalyptus 6d30394655 publish Docs to gh-pages (auto)
branch:       master
SHA:          d5ef7afa1e
range SHA:    16b2997a7180...d5ef7afa1e4d
build id:     337174295
build number: 908
2018-02-04 11:23:14 +00:00
assets
docs publish Docs to gh-pages (auto) 2018-02-04 11:23:14 +00:00
tablefilter publish TableFilter to gh-pages (auto) 2018-02-04 11:19:39 +00:00
.gitignore
.travis.yml
0-configuration.html
advanced-grid-editable.html
advanced-grid-selection.html
alphabetical-pager.html
alternating-rows.html
auto-filter.html
case-sensitive.html
column-calculations-api.html
column-calculations.html
column-widths.html
columns-visibility.html
conditional-cell-formatting.html
custom-checkbox-selection.html
custom-filter-options.html
custom-filtering.html
data-types.html
deep-linking.html
dynamic-external-filters.html
exact-match-by-column.html
exact-match.html
examples.html
extension-run-time.html
external-filter-operators.html
external-filters.html
external-toolbar.html
extract-data-apis.html
features-no-configuration.html
filter-images.html
filter-types.html
filters-visibility-external-toggle.html
filters-visibility.html
grid-layout-custom-css.html
grid-layout.html
grouped-headers.html
highlight-keywords.html
ignore-diacritics-by-column.html
ignore-diacritics.html
index.html
LICENSE
linked-filters-greyed-out-options.html
linked-filters.html
load-filters-on-demand.html
multiple-state-types.html
no-filters.html
no-headers.html
no-results-message.html
package.json
paging.html
persistence.html
popup-filters.html
README.md
responsive-grid-layout.html
responsive.html
rows-always-visible.html
setup-requirejs.html
setup-systemjs.html
single-filter-exclude-cols.html
single-filter.html
sort-columns-external-command.html
sort-custom-type.html
sort.html
starter.html
theme-roller.html
toggle-features.html
using-bootstrap.html
using-material-design-lite.html
watermark.html

Build Status Document codecov Greenkeeper badge

TableFilter

A Javascript library making HTML tables filterable

TableFilter is a modernised version of the HTML Table Filter generator javascript plugin. This library adds to any html table a "filter by column" feature that enables users to filter and limit the data displayed within a long table. By default, the script automatically adds a filter grid bar at the top of the desired table.

Features

  • Convert a regular HTML table into an advanced grid component providing:
    • Advanced columns filtering model
    • Sorting and pagination capabilities
    • Complete selection model (ezEditTable extension)
    • Extended keyboard navigation (ezEditTable extension)
    • Inline cell or row editing (ezEditTable extension)
    • Row insertion or deleting (ezEditTable extension)
    • And even more features...
  • Attach to an existing HTML table
  • Integration with any server-side technology as this is a pure client-side solution
  • Exhaustive documentation and poweful API

Getting started

  • Clone the repo using Git:
git clone https://github.com/koalyptus/TableFilter.git
  • You can download this repository.

  • TableFilter is available on npm repository, you can install it from the command line using the following command:

npm install tablefilter --save-dev
  • or get the future features from the next release channel:
npm install tablefilter@next --save-dev

Setup

Using modules

Require TableFilter:

// ES2015 modules
import TableFilter from 'tablefilter';

// CommonJS or AMD modules
var TableFilter = require('tablefilter');

Using distribution scripts

If you are not using a module system, you can reference the distribution scripts directly in your html pages:

<script src="path_to/node_modules/tablefilter/dist/tablefilter/tablefilter.js"></script>

Placing manually the distribution scripts in your project

Copy the tablefilter directory under dist and place it at desired location in your project. Then include the main js file in your page:

<script src="path/to/my/scripts/tablefilter/tablefilter.js"></script>

Usage

Place the following snippet just under the HTML table and always define a base_path property in the configuration object to reflect the path to the script

<script>
var tf = new TableFilter(document.querySelector('.my-table'), {
    base_path: 'path/to/my/scripts/tablefilter/'
});
tf.init();
</script>

If the base_path property is not specified, it will default to /tablefilter directory:

your-page.html
 |— tablefilter

Development

This project requires node.js and Grunt to be installed:

  • install node.js
  • install Grunt from the command line using npm (comes with node.js):
npm install -g grunt-cli

Once Grunt is sorted out you can follow the instructions below. Start by installing any dependencies.

npm install

Use

npm run dev

command to launch a build / watch cycle and start the local sever on port 8080.

Use

npm run build

command to generate a production build.

The

npm run dist

command will create a production build, run the tests and finally generate the demos:

To run all the tests and generate the coverage report:

npm test

or to run specific test(s):

grunt test-only:test.html
grunt test-only:test.html,test-sort.html

to view the coverage report(s), open the index.html under the report/coverage folder or online.

Demos

Check out the online examples or generate the demos locally:

npm run build:demos

then run the local webserver:

npm start

then pick a demo from:

http://localhost:8080/demos/

Documentation

Find exhaustive documentation on the configuration options in the WIKI section.

Autogenerated documentation of the ES6 modules is available on the website: docs

If you previously used the HTML Table Filter Generator plugin, verify the configuration options you are using are still supported: Obsolete

Run this task to generate the documentation in the docs/docs directory:

npm run esdoc

Support

License

MIT