1.0.0 • Published 4 years ago

jquery-uitablefilter v1.0.0

Weekly downloads
472
License
MIT
Repository
github
Last release
4 years ago

Repository

npm version

https://github.com/gregwebs/jquery-uitablefilter

What's new ?

With this version the 'column' argument has been modified to be an array of columns instead of being just one column. Consequently, the script is now able to search in several columns. If you want the original behaviour back, you can put a simple String. If you don't want to create any filter, just put an empty array as argument.

Download

Download the latest version here : https://github.com/gregwebs/jquery-uitablefilter/blob/master/jquery.uitablefilter.js

Install

npm install jquery-uitablefilter

or yarn

yarn add jquery-uitablefilter

Example

Here is an example (see the original project README for more informations). It will search for the word 'Pepper' in #table in columns 'Price', 'Item' and 'ID'.

$.uiTableFilter($('#table'), 'Pepper',  ['Price', 'Item', 'D']);