Last active
September 25, 2015 16:31
-
-
Save MuTLY/615ac36ba2f54dfa08d2 to your computer and use it in GitHub Desktop.
Table Column Filters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.even { | |
background: #ccc; | |
} | |
.odd { | |
background: #fff; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<table> | |
<thead> | |
<tr> | |
<th>Column 1</th> | |
<th>Column 2</th> | |
<th>Column 3</th> | |
</tr> | |
</thead> | |
<tbody class="filters"> | |
<tr> | |
<td> | |
<input type="text"> | |
</td> | |
<td> | |
<input type="text"> | |
</td> | |
<td> | |
<select> | |
<option></option> | |
<option value="a">A</option> | |
<option value="B">B</option> | |
</select> | |
</td> | |
</tr> | |
</tbody> | |
<tbody> | |
<tr class="even"> | |
<td>Leandro</td> | |
<td>one</td> | |
<td>A</td> | |
</tr> | |
<tr class="odd"> | |
<td>daniela</td> | |
<td>Two</td> | |
<td>A</td> | |
</tr> | |
<tr class="even"> | |
<td>leonardo</td> | |
<td>three</td> | |
<td>A</td> | |
</tr> | |
<tr class="odd"> | |
<td>Daniel Azulai</td> | |
<td>FOur</td> | |
<td>A</td> | |
</tr> | |
<tr class="even"> | |
<td>Daniel Boone</td> | |
<td>fiVE</td> | |
<td>B</td> | |
</tr> | |
<tr class="odd"> | |
<td>Eric</td> | |
<td>six</td> | |
<td>B</td> | |
</tr> | |
</tbody> | |
</table> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var $rows = $('tbody:not(.filters) tr'); | |
$('.filters input, .filters select') | |
.on('input change propertychange', function (e) { | |
e.preventDefault(); | |
if (this.value === '') { | |
$rows.show(); | |
return false; | |
} | |
var indexColumn = $(this).parent().index(), | |
data = this.value.toLowerCase(); | |
$rows | |
.hide() | |
.filter(function (i, v) { | |
var $t = $(this).children(':eq(' + indexColumn + ')'), | |
$d = $t.text().toLowerCase().indexOf(data) != -1 ? true : false; | |
if ($d) { | |
return true; | |
} | |
return false; | |
}) | |
.show(); | |
$rows.removeClass("odd even"); | |
$rows.filter(':visible:odd').addClass("odd"); | |
$rows.filter(':visible:even').addClass("even"); | |
}) | |
.focus(function () { | |
this.value = ''; | |
$rows.show(); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment