1
0
Fork 0
mirror of https://github.com/koalyptus/TableFilter.git synced 2024-06-28 02:10:56 +02:00

Generated by grunt gh-pages

This commit is contained in:
Max Guglielmi 2015-11-21 19:41:22 +11:00
parent b767390dda
commit 5fd867e582

View file

@ -667,8 +667,10 @@
var feature = tf.feature('paging');
if(chx.checked){
tf.paging = true;
feature.reset();
} else {
tf.paging = false;
feature.destroy();
// Display all rows
tf.filter();
@ -682,8 +684,10 @@
var feature = tf.feature('alternateRows');
if(chx.checked){
tf.alternateRows = true;
feature.reset();
} else {
tf.alternateRows = false;
feature.destroy();
}
}
@ -695,8 +699,10 @@
var feature = tf.feature('rowsCounter');
if(chx.checked){
tf.rowsCounter = true;
feature.init();
} else {
tf.rowsCounter = false;
feature.destroy();
}
}