1
0
Fork 0
mirror of https://github.com/koalyptus/TableFilter.git synced 2024-06-03 14:32:21 +02:00

Generated by grunt gh-pages

This commit is contained in:
Max Guglielmi 2017-10-26 14:09:18 +11:00
parent e92ae41cc7
commit 2f561266b6
2 changed files with 3 additions and 3 deletions

View file

@ -638,7 +638,7 @@
{ type: 'date', locale: 'en', format: ['{dd}-{months}-{yyyy|yy}'] },
'ipaddress'
],
rows_always_visible: [totRowIndex],
exclude_rows: [totRowIndex],
on_filters_loaded: function(tf){
tf.setFilterValue(3, '>1.000');
tf.setFilterValue(4, '<2,500');

View file

@ -196,7 +196,7 @@
<h1>Exclude rows</h1>
<p>
To exclude rows from the filtering process, use the
<code>rows_always_visible</code> option. Those rows will remain always
<code>exclude_rows</code> option. Those rows will remain always
visible.
</p>
@ -272,7 +272,7 @@
<script data-config>
var tf = new TableFilter('demo', {
base_path: 'tablefilter/',
rows_always_visible: [2, 8]
exclude_rows: [2, 8]
});
tf.init();
</script>