mirror of
https://github.com/Mottie/tablesorter.git
synced 2024-11-15 23:54:22 +00:00
Parser: input-select updates extra header checkboxes. Fixes #1560
This commit is contained in:
parent
1f37cbae33
commit
cf3c674c1f
@ -1,4 +1,4 @@
|
|||||||
/*! Parser: input & select - updated 2018-06-16 (v2.30.6) *//*
|
/*! Parser: input & select - updated 2018-06-21 (v2.30.7) *//*
|
||||||
* for jQuery 1.7+ & tablesorter 2.7.11+
|
* for jQuery 1.7+ & tablesorter 2.7.11+
|
||||||
* Demo: http://mottie.github.com/tablesorter/docs/example-widget-grouping.html
|
* Demo: http://mottie.github.com/tablesorter/docs/example-widget-grouping.html
|
||||||
*/
|
*/
|
||||||
@ -164,9 +164,12 @@
|
|||||||
var $sticky,
|
var $sticky,
|
||||||
$rows = $table.children( 'tbody' ).children( ':visible' ), // (include child rows?)
|
$rows = $table.children( 'tbody' ).children( ':visible' ), // (include child rows?)
|
||||||
len = $rows.length,
|
len = $rows.length,
|
||||||
hasSticky = $table[0].config.widgetOptions.$sticky;
|
c = $table[0].config,
|
||||||
|
wo = c && c.widgetOptions,
|
||||||
|
$headers = c && c.$headers.add( $( c.namespace + '_extra_headers' ) ) || $table.children( 'thead' ),
|
||||||
|
hasSticky = wo && wo.$sticky;
|
||||||
// set indeterminate state on header checkbox
|
// set indeterminate state on header checkbox
|
||||||
$table.children( 'thead' ).find( 'input[type="checkbox"]' ).each( function() {
|
$headers.find( 'input[type="checkbox"]' ).each( function() {
|
||||||
if (hasSticky) {
|
if (hasSticky) {
|
||||||
$sticky = hasSticky.find( '[data-column="' + column + '"]' );
|
$sticky = hasSticky.find( '[data-column="' + column + '"]' );
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user