forked from jbritten/jquery-tablesorter-filter
-
Notifications
You must be signed in to change notification settings - Fork 0
A search/filter plugin which extends the jQuery TableSorter plugin
rleonhardt/jquery-tablesorter-filter
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
This tablesorterFilter plugin extends the jQuery TableSorter plugin (http://tablesorter.com), written by Christian Bach, and provides the ability to search the table and filter the results. USAGE / EXAMPLE <script type="text/javascript"> jQuery(document).ready(function() { $("#myTable") .tablesorter({debug: false, widgets: ['zebra'], sortList: [[0,0]]}) .tablesorterFilter({filterContainer: "#filter-box", filterClearContainer: "#filter-clear-button", filterColumns: [0]}); }); </script> Search: <input name="filter" id="filter-box" value="" maxlength="30" size="30" type="text"> <input id="filter-clear-button" type="submit" value="Clear"/> <table id="myTable"> <thead> <tr> <th>Last Name</th> <th>First Name</th> <th>Email</th> <th>Web Site</th> </tr> </thead> <tbody> <tr> <td>Smith</td> <td>John</td> <td>[email protected]</td> <td>http://www.jsmith.com</td> </tr> <tr> <td>Doe</td> <td>Jason</td> <td>[email protected]</td> <td>http://www.jdoe.com</td> </tr> </tbody> </table> CONFIGURATION tablesorterFilter takes up to eight optional parameters: * filterContainer (string) - The DOM id of the input box where the user will type the search string. The default is "#filter-box". * filterClearContainer (string) - The DOM id of the button (or image, ...) which will clear the search string and reset the table to it's original, unfiltered state. The default is "#filter-clear-button". * filterColumns (array of int) - An array of columns, starting at 0, which will be searched. The default is null so all columns will be searched. * filterCaseSensitive (boolean) - States whether the search string is case sensitive. The default is false. * filterWaitTime (int) - Time after last key press to start filtering. The default is 500 (milliseconds). * filterFunction (function) - Custom function to filter by column text. The default is the plugin function has_words. * filterOrMode (boolean) - Filter by OR mode, any word may occur. The default is false (AND mode, all words must occur). * filterColumn (int) - Filter only single column index, all defined filters with filterColumns not containing this value will be deactivated. The default is null. You may provide multiple filters, i.e.: .tablesorterFilter( { filterColumns: [0, 1] }, { filterContainer: "#filter-box-date", filterColumns: [2], filterFunction: filterByDate } ) Please note that you always have to use only one .tablesorterFilter() call, in this example with 2 object parameters. Search words are separated by spaces, words with a leading dash will be excluded. Example: "include -exclude" will filter for all rows which do contain the (partitial) word "include" but at the same time do not contain the word "exclude". You may filter programmatically: $("#filter-box").trigger("keyup"). If you only want to filter a single column at a time, use .tablesorterFilter( { filterColumn: 2 } ) constructor call and $("table").trigger("filterColumn", 3) afterwards to change filtered column index and start filtering again. $("table").trigger("filterColumn", null) stops single column filter mode and reactivates filterColumns mode. BOUND EVENTS // Start filtering $("table").trigger("doFilter"); // Clear filter $("table").trigger("clearFilter"); // Filter only third column and start filtering $("table").trigger("filterColumn", 2); // Restore filterColumns handling and start filtering $("table").trigger("filterColumn", null); TRIGGERED EVENTS // Filtering finished $("table").bind("filterEnd", function (event) { } ); // Filter cleared $("table").bind("filterCleared", function (event) { } ); REQUIREMENTS jQuery version 1.2.1 or higher and a slightly modified jquery.tablesorter.js version 2.0.3. Both are included in this repo. LICENSE tablesorter_filter is (c) 2008 Justin Britten (justinbritten at gmail dot com) and is dual licensed under the MIT and GPL licenses.
About
A search/filter plugin which extends the jQuery TableSorter plugin
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published
Languages
- JavaScript 100.0%