pager modification for grouping widget - fixes #281

This commit is contained in:
Mottie 2013-10-01 21:13:58 -05:00
parent 3323fd92e1
commit f719e09530

View File

@ -180,7 +180,7 @@
if ( !rows[i].className.match(f) ) {
rows[i].style.display = ( j >= s && j < e ) ? '' : 'none';
// don't count child rows
j += rows[i].className.match(c.cssChildRow) ? 0 : 1;
j += rows[i].className.match(c.cssChildRow + '|' + c.selectorRemove.slice(1)) ? 0 : 1;
}
}
}