mirror of
https://github.com/Mottie/tablesorter.git
synced 2024-11-15 23:54:22 +00:00
Group widget: Add group_saveGroups & group_saveReset option. Fixes #514
This commit is contained in:
parent
743f99919d
commit
fa6b620964
@ -64,7 +64,7 @@ tr.group-header.collapsed td i {
|
|||||||
|
|
||||||
<script id="js">$(function(){
|
<script id="js">$(function(){
|
||||||
|
|
||||||
$("table").tablesorter({
|
$(".tablesorter").tablesorter({
|
||||||
theme : "blue",
|
theme : "blue",
|
||||||
headers: {
|
headers: {
|
||||||
0: { sorter: "checkbox" },
|
0: { sorter: "checkbox" },
|
||||||
@ -75,6 +75,8 @@ tr.group-header.collapsed td i {
|
|||||||
widgetOptions: {
|
widgetOptions: {
|
||||||
group_collapsible : true, // make the group header clickable and collapse the rows below it.
|
group_collapsible : true, // make the group header clickable and collapse the rows below it.
|
||||||
group_collapsed : false, // start with all groups collapsed (if true)
|
group_collapsed : false, // start with all groups collapsed (if true)
|
||||||
|
group_saveGroups : true, // remember collapsed groups
|
||||||
|
group_saveReset : '.group_reset', // element to clear saved collapsed groups
|
||||||
group_count : " ({num})", // if not false, the "{num}" string is replaced with the number of rows in the group
|
group_count : " ({num})", // if not false, the "{num}" string is replaced with the number of rows in the group
|
||||||
|
|
||||||
// change these default date names based on your language preferences
|
// change these default date names based on your language preferences
|
||||||
@ -139,14 +141,8 @@ tr.group-header.collapsed td i {
|
|||||||
<ul>
|
<ul>
|
||||||
<li>This widget will <strong>only work</strong> in tablesorter version 2.8+ and jQuery version 1.7+.</li>
|
<li>This widget will <strong>only work</strong> in tablesorter version 2.8+ and jQuery version 1.7+.</li>
|
||||||
<li>Please do not use this widget in very large tables (it might be really slow) <del>or when your table includes multiple tbodies</del>.</li>
|
<li>Please do not use this widget in very large tables (it might be really slow) <del>or when your table includes multiple tbodies</del>.</li>
|
||||||
<li>In <span class="version">v2.14</span>, added
|
<li>In <span class="version">v2.15.6</span>, added <code>group_saveGroups</code> & <code>group_saveReset</code> options. More details are included in the "Options" section.</li>
|
||||||
<ul>
|
<li>In <span class="version">v2.14</span>, added <code>group_dateString</code> option. More details are included in the "Options" section.</li>
|
||||||
<li><code>group_dateString</code> option which is a function that allows you to format the date string when using the <code>group-date</code> header class name. This is the default function:
|
|
||||||
<pre class="prettyprint lang-js">group_dateString : function(date) { return date.toLocaleString(); }</pre>
|
|
||||||
Other functions that can be used are <code>date</code> (alone), <code>date.toLocaleString()</code>, <code>date.toLocaleDateString()</code> or <code>d.toLocaleTimeString()</code>. See <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date#Conversion_getter">this reference</a> for more details.</li>
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
<li>In <span class="version">v2.13</span>, added <code>group_separator</code> option & <code>group-separator-#</code> header class name. To see this in action, check out the <a href="example-parsers-file-type.html">file type parser demo</a>.</li>
|
<li>In <span class="version">v2.13</span>, added <code>group_separator</code> option & <code>group-separator-#</code> header class name. To see this in action, check out the <a href="example-parsers-file-type.html">file type parser demo</a>.</li>
|
||||||
<li>In <span class="version">v2.12</span>, added <code>group_callback</code> & <code>group_complete</code> options. See options section below for details.</li>
|
<li>In <span class="version">v2.12</span>, added <code>group_callback</code> & <code>group_complete</code> options. See options section below for details.</li>
|
||||||
<li>In <span class="version">v2.11</span>:
|
<li>In <span class="version">v2.11</span>:
|
||||||
@ -165,20 +161,67 @@ tr.group-header.collapsed td i {
|
|||||||
<h3><a href="#">Options</a></h3>
|
<h3><a href="#">Options</a></h3>
|
||||||
<div>
|
<div>
|
||||||
<h3>Group widget default options (added inside of tablesorter <code>widgetOptions</code>)</h3>
|
<h3>Group widget default options (added inside of tablesorter <code>widgetOptions</code>)</h3>
|
||||||
|
<table class="tablesorter-blue">
|
||||||
|
<thead>
|
||||||
|
<tr><th>Option</th><th>Default</th><th>Description</th></tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>group_collapsible</td>
|
||||||
|
<td><code>true</code></td>
|
||||||
|
<td>
|
||||||
|
when <code>true</code>, the group headers become clickable and collapse the rows below it.
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>group_collapsed</td>
|
||||||
|
<td><code>false</code></td>
|
||||||
|
<td>
|
||||||
|
when <code>true</code> and <code>group_collapsible</code> is also <code>true</code>, all groups will start collapsed (<span class="version">v2.11</span>)
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>group_saveGroups</td>
|
||||||
|
<td><code>true</code></td>
|
||||||
|
<td>Remember collapsed groups (<span class="version">v2.15.6</span>)
|
||||||
<ul>
|
<ul>
|
||||||
<li><code>group_collapsible</code> (<code>true</code>) - when <code>true</code>, the group headers become clickable and collapse the rows below it.</li>
|
<li>This option saves the currently collapsed groups, using the group name.</li>
|
||||||
<li><code>group_collapsed</code> (<code>false</code>) - when <code>true</code> and <code>group_collapsible</code> is also <code>true</code>, all groups will start collapsed (<span class="version">v2.11</span>).</li>
|
<li>Collapsed groups are saved by column and group class name, so that the groups can be dynamically changed and still remember the correct collapsed groups. Try changing the group names (using the sliders) in the demo below & then collapsing some groups several times; go back to previous groups and it will remember which groups were collapsed.</li>
|
||||||
<li><code>group_count</code> (<code>" ({num})"</code>) - allows you to add custom formatting, or remove, the group count within the group header. Set it to <code>false</code> or an empty string to remove the count.</li>
|
<li>Because the group name is saved, groups with a number range (e.g. "group-number-10"; see the "Numeric" column below) will show a different range depending on sort direction; in this situation, each sort direction is saved independently.</li>
|
||||||
<li><code>group_callback</code> (<code>null</code>) - use this function to further modify the group header to include more information (i.e. group totals). Parameters include (<code>$cell, $rows, column, table</code>). See the example below for more details <span class="version">v2.12</span>.
|
<li>This option requires the <code>$.tablesorter.storage</code> utility contained within the <code>jquery.tablesorter.widgets.js</code> file.</li>
|
||||||
<ul>
|
|
||||||
<li><code>$cell</code> - current group header table cell (jQuery object).</li>
|
|
||||||
<li><code>$rows</code> - current group rows (jQuery object).</li>
|
|
||||||
<li><code>column</code> - current table column being grouped (zero-based index).</li>
|
|
||||||
<li><code>table</code> - current table (DOM).</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</td>
|
||||||
<li><code>group_complete</code> (<code>"groupingComplete"</code>) - event triggered on the table when the grouping widget has finished work <span class="version">v2.12</span>.</li>
|
</tr>
|
||||||
<li><code>group_formatter</code> (<code>null</code>) - use this function to modify the group header text before it gets applied. It provides various parameters (<code>txt, col, table, c, wo</code>) to make it work for any of the table columns and data. See the comments in the example below for more details.
|
<tr>
|
||||||
|
<td>group_saveReset</td>
|
||||||
|
<td><code>null</code></td>
|
||||||
|
<td>Element used to clear saved collapsed groups (<span class="version">v2.15.6</span>)
|
||||||
|
<ul>
|
||||||
|
<li>This option should contain a jQuery selector string or jQuery object pointing to an element to be used to reset (clear) the list of collapsed groups.</li>
|
||||||
|
<li>You can also clear the saved collapsed groups by calling this function: <code>$.tablesorter.grouping.clearSavedGroups(table);</code> (table would be either the table DOM or table jQuery object).</li>
|
||||||
|
<li>This option requires the <code>$.tablesorter.storage</code> utility contained within the <code>jquery.tablesorter.widgets.js</code> file.</li>
|
||||||
|
</ul>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>group_count</td>
|
||||||
|
<td><code>" ({num})"</code></td>
|
||||||
|
<td>
|
||||||
|
Allows you to add custom formatting, or remove, the group count within the group header. Set it to <code>false</code> or an empty string to remove the count.
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>group_separator</td>
|
||||||
|
<td><code>"-"</code></td>
|
||||||
|
<td>
|
||||||
|
When the <code>group-separator</code> class name is added, it uses the setting from this option to split the table cell content for grouping <span class="version">v2.13</span>.
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>group_formatter</td>
|
||||||
|
<td><code>null</code></td>
|
||||||
|
<td>
|
||||||
|
Use this function to modify the group header text before it gets applied. It provides various parameters (<code>txt, col, table, c, wo</code>) to make it work for any of the table columns and data. See the comments in the example below for more details.
|
||||||
<ul>
|
<ul>
|
||||||
<li><code>txt</code> - current text of the group header.</li>
|
<li><code>txt</code> - current text of the group header.</li>
|
||||||
<li><code>col</code> - current table column being grouped (zero-based index).</li>
|
<li><code>col</code> - current table column being grouped (zero-based index).</li>
|
||||||
@ -186,16 +229,69 @@ tr.group-header.collapsed td i {
|
|||||||
<li><code>c</code> - table data from <code>table.config</code>.</li>
|
<li><code>c</code> - table data from <code>table.config</code>.</li>
|
||||||
<li><code>wo</code> - table widget options from <code>table.config.widgetOptions</code>.</li>
|
<li><code>wo</code> - table widget options from <code>table.config.widgetOptions</code>.</li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
<pre class="prettyprint lang-js">group_formatter : function(txt, col, table, c, wo) {
|
||||||
<li><code>group_separator</code> (<code>"-"</code>) - when the <code>group-separator</code> class name is added, it uses the setting from this option to split the table cell content for grouping <span class="version">v2.13</span>.</li>
|
// If there are empty cells, name the group "Empty"
|
||||||
<li>group date/time options - Name arrays included so that the language of the date groups can be modified easily. Defaults (English):
|
return txt === "" ? "Empty" : txt;
|
||||||
|
}</pre>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>group_callback</td>
|
||||||
|
<td><code>null</code></td>
|
||||||
|
<td>
|
||||||
|
Use this function to further modify the group header to include more information (i.e. group totals). Parameters include (<code>$cell, $rows, column, table</code>). See the example below for more details <span class="version">v2.12</span>.
|
||||||
<ul>
|
<ul>
|
||||||
<li><code>group_months</code> (<code>[ "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" ]</code>) - Month names.</li>
|
<li><code>$cell</code> - current group header table cell (jQuery object).</li>
|
||||||
<li><code>group_week</code> (<code>[ "Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday" ]</code>) - Named days of the week.</li>
|
<li><code>$rows</code> - current group rows (jQuery object).</li>
|
||||||
<li><code>group_time</code> (<code>[ "AM", "PM" ]</code>) - Time of day.</li>
|
<li><code>column</code> - current table column being grouped (zero-based index).</li>
|
||||||
|
<li><code>table</code> - current table (DOM).</li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
<pre class="prettyprint lang-js">group_callback : function($cell, $rows, column, table){
|
||||||
|
$cell.find('.group-name').append(' group'); // adds "group" to the end of the group name
|
||||||
|
}</pre>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>group_complete</td>
|
||||||
|
<td><code>"groupingComplete"</code></td>
|
||||||
|
<td>
|
||||||
|
Event triggered on the table when the grouping widget has finished work <span class="version">v2.12</span>.
|
||||||
|
<pre class="prettyprint lang-js">$('table').on('groupingComplete', function(){
|
||||||
|
// always hide empty groups ("Empty" can be added by the group_formatter function)
|
||||||
|
$(this).find('.group-header:contains("Empty")').trigger('toggleGroup');
|
||||||
|
});</pre>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
group_months<br>
|
||||||
|
group_week<br>
|
||||||
|
group_time
|
||||||
|
</td>
|
||||||
|
<td>(see description)</td>
|
||||||
|
<td>
|
||||||
|
Name arrays included so that the language of the date groups can be modified easily. Defaults (English):
|
||||||
|
<ul>
|
||||||
|
<li>group_months: (<code>[ "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" ]</code>) - Month names.</li>
|
||||||
|
<li>group_week: (<code>[ "Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday" ]</code>) - Named days of the week.</li>
|
||||||
|
<li>group_time: (<code>[ "AM", "PM" ]</code>) - Time of day.</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>group_dateString</td>
|
||||||
|
<td>(see description)</td>
|
||||||
|
<td>
|
||||||
|
When the <code>"group-date"</code> class name is set on a column, this function is used to format the date string. This is the default function:
|
||||||
|
<pre class="prettyprint lang-js">// you can just return date, date.toLocaleString(), date.toLocaleDateString() or d.toLocaleTimeString()
|
||||||
|
group_dateString : function(date) {
|
||||||
|
return date.toLocaleString();
|
||||||
|
}</pre>
|
||||||
|
Other functions that can be used are <code>date</code> (alone), <code>date.toLocaleString()</code>, <code>date.toLocaleDateString()</code> or <code>d.toLocaleTimeString()</code>. See <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date#Conversion_getter">this reference</a> for more details.
|
||||||
|
</td>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<h3><a href="#">Header Class Names</a></h3>
|
<h3><a href="#">Header Class Names</a></h3>
|
||||||
@ -229,7 +325,8 @@ tr.group-header.collapsed td i {
|
|||||||
<span class="demo-label">Numeric column:</span> <div id="slider0"></div> <span class="numberclass"></span> (includes subtotals)<br>
|
<span class="demo-label">Numeric column:</span> <div id="slider0"></div> <span class="numberclass"></span> (includes subtotals)<br>
|
||||||
<span class="demo-label">Animals column:</span> <div id="slider1"></div> <span class="animalclass"></span><br>
|
<span class="demo-label">Animals column:</span> <div id="slider1"></div> <span class="animalclass"></span><br>
|
||||||
<span class="demo-label">Date column:</span> <div id="slider2"></div> <span class="dateclass"></span>
|
<span class="demo-label">Date column:</span> <div id="slider2"></div> <span class="dateclass"></span>
|
||||||
|
<br><br>
|
||||||
|
<button class="group_reset">Reset Saved Collapsed Groups</button>
|
||||||
<div id="demo"><table class="tablesorter">
|
<div id="demo"><table class="tablesorter">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
@ -321,7 +418,7 @@ tr.group-header.collapsed td i {
|
|||||||
$('.tablesorter-header-inner:eq(' + numcol + ')').find('span').html(startBlock);
|
$('.tablesorter-header-inner:eq(' + numcol + ')').find('span').html(startBlock);
|
||||||
},
|
},
|
||||||
slide: function( event, ui ) {
|
slide: function( event, ui ) {
|
||||||
$('table')[0].config.$headers.eq(numcol)
|
$('.tablesorter')[0].config.$headers.eq(numcol)
|
||||||
.attr('class', function(i,v){
|
.attr('class', function(i,v){
|
||||||
return v.replace(/group-number-\d+/, 'group-number-' + ui.value);
|
return v.replace(/group-number-\d+/, 'group-number-' + ui.value);
|
||||||
})
|
})
|
||||||
@ -341,7 +438,7 @@ tr.group-header.collapsed td i {
|
|||||||
$('.tablesorter-header-inner:eq(' + letcol + ')').find('span').html(startVal === 1 ? 'letter' : startVal + ' letters');
|
$('.tablesorter-header-inner:eq(' + letcol + ')').find('span').html(startVal === 1 ? 'letter' : startVal + ' letters');
|
||||||
},
|
},
|
||||||
slide: function( event, ui ) {
|
slide: function( event, ui ) {
|
||||||
$('table')[0].config.$headers.eq(letcol)
|
$('.tablesorter')[0].config.$headers.eq(letcol)
|
||||||
.attr('class', function(i,v){
|
.attr('class', function(i,v){
|
||||||
return v.replace(/group-letter-\d+/, 'group-letter-' + ui.value);
|
return v.replace(/group-letter-\d+/, 'group-letter-' + ui.value);
|
||||||
})
|
})
|
||||||
@ -361,7 +458,7 @@ tr.group-header.collapsed td i {
|
|||||||
$('.tablesorter-header-inner:eq(' + datecol + ')').find('span').html(curGroup === 0 ? 'full' : dateGroups[curGroup]);
|
$('.tablesorter-header-inner:eq(' + datecol + ')').find('span').html(curGroup === 0 ? 'full' : dateGroups[curGroup]);
|
||||||
},
|
},
|
||||||
slide: function( event, ui ) {
|
slide: function( event, ui ) {
|
||||||
$('table')[0].config.$headers.eq(datecol)
|
$('.tablesorter')[0].config.$headers.eq(datecol)
|
||||||
.attr('class', function(i,v){
|
.attr('class', function(i,v){
|
||||||
return v.replace(/group-date(-\w+)?/, 'group-date' + (ui.value > 0 ? '-' + dateGroups[ui.value] : ''));
|
return v.replace(/group-date(-\w+)?/, 'group-date' + (ui.value > 0 ? '-' + dateGroups[ui.value] : ''));
|
||||||
})
|
})
|
||||||
|
@ -53,9 +53,10 @@ ts.grouping = {
|
|||||||
|
|
||||||
update : function(table, c, wo){
|
update : function(table, c, wo){
|
||||||
if ($.isEmptyObject(c.cache)) { return; }
|
if ($.isEmptyObject(c.cache)) { return; }
|
||||||
var rowIndex, tbodyIndex, currentGroup, $rows, groupClass, grouping, time, cache,
|
var rowIndex, tbodyIndex, currentGroup, $rows, groupClass, grouping, time, cache, saveName, direction,
|
||||||
lang = wo.grouping_language,
|
lang = wo.grouping_language,
|
||||||
group = '',
|
group = '',
|
||||||
|
savedGroup = false,
|
||||||
column = c.sortList[0] ? c.sortList[0][0] : -1;
|
column = c.sortList[0] ? c.sortList[0][0] : -1;
|
||||||
c.$table
|
c.$table
|
||||||
.find('tr.group-hidden').removeClass('group-hidden').end()
|
.find('tr.group-hidden').removeClass('group-hidden').end()
|
||||||
@ -66,16 +67,33 @@ ts.grouping = {
|
|||||||
}
|
}
|
||||||
if (column >= 0 && !c.$headers.filter('[data-column="' + column + '"]:last').hasClass('group-false')) {
|
if (column >= 0 && !c.$headers.filter('[data-column="' + column + '"]:last').hasClass('group-false')) {
|
||||||
if (c.debug){ time = new Date(); }
|
if (c.debug){ time = new Date(); }
|
||||||
|
wo.group_currentGroup = ''; // save current groups
|
||||||
|
wo.group_currentGroups = {};
|
||||||
|
|
||||||
|
// group class finds "group-{word/separator/letter/number/date/false}-{optional:#/year/month/day/week/time}"
|
||||||
|
groupClass = (c.$headers.filter('[data-column="' + column + '"]:last').attr('class') || '').match(/(group-\w+(-\w+)?)/g);
|
||||||
|
// grouping = [ 'group', '{word/separator/letter/number/date/false}', '{#/year/month/day/week/time}' ]
|
||||||
|
grouping = groupClass ? groupClass[0].split('-') : ['group','letter',1]; // default to letter 1
|
||||||
|
|
||||||
|
// save current grouping
|
||||||
|
if (wo.group_collapsible && wo.group_saveGroups && ts.storage) {
|
||||||
|
wo.group_currentGroups = ts.storage( table, 'tablesorter-groups' ) || {};
|
||||||
|
// include direction when grouping numbers > 1 (reversed direction shows different range values)
|
||||||
|
direction = (grouping[1] === 'number' && grouping[2] > 1) ? 'dir' + c.sortList[0][1] : '';
|
||||||
|
// combine column, sort direction & grouping as save key
|
||||||
|
saveName = wo.group_currentGroup = '' + column + direction + grouping.join('');
|
||||||
|
if (!wo.group_currentGroups[saveName]) {
|
||||||
|
wo.group_currentGroups[saveName] = [];
|
||||||
|
} else {
|
||||||
|
savedGroup = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
for (tbodyIndex = 0; tbodyIndex < c.$tbodies.length; tbodyIndex++) {
|
for (tbodyIndex = 0; tbodyIndex < c.$tbodies.length; tbodyIndex++) {
|
||||||
cache = c.cache[tbodyIndex].normalized;
|
cache = c.cache[tbodyIndex].normalized;
|
||||||
group = ''; // clear grouping across tbodies
|
group = ''; // clear grouping across tbodies
|
||||||
$rows = c.$tbodies.eq(tbodyIndex).children('tr').not('.' + c.cssChildRow);
|
$rows = c.$tbodies.eq(tbodyIndex).children('tr').not('.' + c.cssChildRow);
|
||||||
for (rowIndex = 0; rowIndex < $rows.length; rowIndex++) {
|
for (rowIndex = 0; rowIndex < $rows.length; rowIndex++) {
|
||||||
if ( $rows.eq(rowIndex).is(':visible') ) {
|
if ( $rows.eq(rowIndex).is(':visible') ) {
|
||||||
// group class finds "group-{word/separator/letter/number/date/false}-{optional:#/year/month/day/week/time}"
|
|
||||||
groupClass = (c.$headers.filter('[data-column="' + column + '"]:last').attr('class') || '').match(/(group-\w+(-\w+)?)/g);
|
|
||||||
// grouping = [ 'group', '{word/separator/letter/number/date/false}', '{#/year/month/day/week/time}' ]
|
|
||||||
grouping = groupClass ? groupClass[0].split('-') : ['','letter',1]; // default to letter 1
|
|
||||||
// fixes #438
|
// fixes #438
|
||||||
if (ts.grouping.types[grouping[1]]) {
|
if (ts.grouping.types[grouping[1]]) {
|
||||||
currentGroup = cache[rowIndex] ?
|
currentGroup = cache[rowIndex] ?
|
||||||
@ -92,9 +110,14 @@ ts.grouping = {
|
|||||||
currentGroup = wo.group_formatter((currentGroup || '').toString(), column, table, c, wo) || currentGroup;
|
currentGroup = wo.group_formatter((currentGroup || '').toString(), column, table, c, wo) || currentGroup;
|
||||||
}
|
}
|
||||||
$rows.eq(rowIndex).before('<tr class="group-header ' + c.selectorRemove.slice(1) +
|
$rows.eq(rowIndex).before('<tr class="group-header ' + c.selectorRemove.slice(1) +
|
||||||
(wo.group_collapsed && wo.group_collapsible ? ' collapsed' : '') + '" unselectable="on"><td colspan="' +
|
// (wo.group_collapsed && wo.group_collapsible ? ' collapsed' : '') +
|
||||||
|
'" unselectable="on"><td colspan="' +
|
||||||
c.columns + '">' + (wo.group_collapsible ? '<i/>' : '') + '<span class="group-name">' +
|
c.columns + '">' + (wo.group_collapsible ? '<i/>' : '') + '<span class="group-name">' +
|
||||||
currentGroup + '</span><span class="group-count"></span></td></tr>');
|
currentGroup + '</span><span class="group-count"></span></td></tr>');
|
||||||
|
if (wo.group_saveGroups && !savedGroup && wo.group_collapsed && wo.group_collapsible) {
|
||||||
|
// all groups start collapsed
|
||||||
|
wo.group_currentGroups[wo.group_currentGroup].push(currentGroup);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -103,8 +126,9 @@ ts.grouping = {
|
|||||||
c.$table.find('tr.group-header')
|
c.$table.find('tr.group-header')
|
||||||
.bind('selectstart', false)
|
.bind('selectstart', false)
|
||||||
.each(function(){
|
.each(function(){
|
||||||
var $label,
|
var isHidden, $label,
|
||||||
$row = $(this),
|
$row = $(this),
|
||||||
|
name = $row.text().toLowerCase(),
|
||||||
$rows = $row.nextUntil('tr.group-header').filter(':visible');
|
$rows = $row.nextUntil('tr.group-header').filter(':visible');
|
||||||
if (wo.group_count || $.isFunction(wo.group_callback)) {
|
if (wo.group_count || $.isFunction(wo.group_callback)) {
|
||||||
$label = $row.find('.group-count');
|
$label = $row.find('.group-count');
|
||||||
@ -117,7 +141,12 @@ ts.grouping = {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (wo.group_collapsed && wo.group_collapsible) {
|
if (wo.group_saveGroups && wo.group_currentGroups[wo.group_currentGroup].length) {
|
||||||
|
isHidden = $.inArray( $row.find('.group-name').text(), wo.group_currentGroups[wo.group_currentGroup] ) > -1;
|
||||||
|
$row.toggleClass('collapsed', isHidden);
|
||||||
|
$rows.toggleClass('group-hidden', isHidden);
|
||||||
|
} else if (wo.group_collapsed && wo.group_collapsible) {
|
||||||
|
$row.addClass('collapsed');
|
||||||
$rows.addClass('group-hidden');
|
$rows.addClass('group-hidden');
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
@ -126,6 +155,56 @@ ts.grouping = {
|
|||||||
$.tablesorter.benchmark("Applying groups widget: ", time);
|
$.tablesorter.benchmark("Applying groups widget: ", time);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
bindEvents : function(table, c, wo){
|
||||||
|
if (wo.group_collapsible) {
|
||||||
|
wo.group_currentGroups = [];
|
||||||
|
// .on() requires jQuery 1.7+
|
||||||
|
c.$table.on('click toggleGroup', 'tr.group-header', function(event){
|
||||||
|
event.stopPropagation();
|
||||||
|
var isCollapsed, $groups, indx,
|
||||||
|
$this = $(this),
|
||||||
|
name = $this.find('.group-name').text();
|
||||||
|
// use shift-click to toggle ALL groups
|
||||||
|
if (event.type === 'click' && event.shiftKey) {
|
||||||
|
$this.siblings('.group-header').trigger('toggleGroup');
|
||||||
|
}
|
||||||
|
$this.toggleClass('collapsed');
|
||||||
|
// nextUntil requires jQuery 1.4+
|
||||||
|
$this.nextUntil('tr.group-header').toggleClass('group-hidden', $this.hasClass('collapsed') );
|
||||||
|
// save collapsed groups
|
||||||
|
if (wo.group_saveGroups && ts.storage) {
|
||||||
|
$groups = c.$table.find('.group-header');
|
||||||
|
isCollapsed = $this.hasClass('collapsed');
|
||||||
|
if (!wo.group_currentGroups[wo.group_currentGroup]) {
|
||||||
|
wo.group_currentGroups[wo.group_currentGroup] = [];
|
||||||
|
}
|
||||||
|
if (isCollapsed && wo.group_currentGroup) {
|
||||||
|
wo.group_currentGroups[wo.group_currentGroup].push( name );
|
||||||
|
} else if (wo.group_currentGroup) {
|
||||||
|
indx = $.inArray( name, wo.group_currentGroups[wo.group_currentGroup] );
|
||||||
|
if (indx > -1) {
|
||||||
|
wo.group_currentGroups[wo.group_currentGroup].splice( indx, 1 );
|
||||||
|
}
|
||||||
|
}
|
||||||
|
ts.storage( table, 'tablesorter-groups', wo.group_currentGroups );
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
$(wo.group_saveReset).on('click', function(){
|
||||||
|
ts.grouping.clearSavedGroups(table);
|
||||||
|
});
|
||||||
|
c.$table.on('pagerChange.tsgrouping', function(){
|
||||||
|
ts.grouping.update(table, c, wo);
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
clearSavedGroups: function(table){
|
||||||
|
if (table && ts.storage) {
|
||||||
|
ts.storage(table, 'tablesorter-groups', '');
|
||||||
|
ts.grouping.update(table, table.config, table.config.widgetOptions);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
};
|
};
|
||||||
@ -136,6 +215,8 @@ ts.addWidget({
|
|||||||
options: {
|
options: {
|
||||||
group_collapsible : true, // make the group header clickable and collapse the rows below it.
|
group_collapsible : true, // make the group header clickable and collapse the rows below it.
|
||||||
group_collapsed : false, // start with all groups collapsed
|
group_collapsed : false, // start with all groups collapsed
|
||||||
|
group_saveGroups : true, // remember collapsed groups
|
||||||
|
group_saveReset : null, // element to clear saved collapsed groups
|
||||||
group_count : ' ({num})', // if not false, the "{num}" string is replaced with the number of rows in the group
|
group_count : ' ({num})', // if not false, the "{num}" string is replaced with the number of rows in the group
|
||||||
group_separator : '-', // group name separator; used when group-separator-# class is used.
|
group_separator : '-', // group name separator; used when group-separator-# class is used.
|
||||||
group_formatter : null, // function(txt, column, table, c, wo) { return txt; }
|
group_formatter : null, // function(txt, column, table, c, wo) { return txt; }
|
||||||
@ -152,23 +233,7 @@ ts.addWidget({
|
|||||||
group_dateString : function(date) { return date.toLocaleString(); }
|
group_dateString : function(date) { return date.toLocaleString(); }
|
||||||
},
|
},
|
||||||
init: function(table, thisWidget, c, wo){
|
init: function(table, thisWidget, c, wo){
|
||||||
if (wo.group_collapsible) {
|
ts.grouping.bindEvents(table, c, wo);
|
||||||
// .on() requires jQuery 1.7+
|
|
||||||
c.$table.on('click toggleGroup', 'tr.group-header', function(event){
|
|
||||||
event.stopPropagation();
|
|
||||||
var $this = $(this);
|
|
||||||
// use shift-click to toggle ALL groups
|
|
||||||
if (event.type === 'click' && event.shiftKey) {
|
|
||||||
$this.siblings('.group-header').trigger('toggleGroup');
|
|
||||||
}
|
|
||||||
$this.toggleClass('collapsed');
|
|
||||||
// nextUntil requires jQuery 1.4+
|
|
||||||
$this.nextUntil('tr.group-header').toggleClass('group-hidden', $this.hasClass('collapsed') );
|
|
||||||
});
|
|
||||||
}
|
|
||||||
c.$table.on('pagerChange', function(){
|
|
||||||
ts.grouping.update(table, c, wo);
|
|
||||||
});
|
|
||||||
},
|
},
|
||||||
format: function(table, c, wo) {
|
format: function(table, c, wo) {
|
||||||
ts.grouping.update(table, c, wo);
|
ts.grouping.update(table, c, wo);
|
||||||
@ -176,6 +241,7 @@ ts.addWidget({
|
|||||||
remove : function(table, c, wo){
|
remove : function(table, c, wo){
|
||||||
c.$table
|
c.$table
|
||||||
.off('click', 'tr.group-header')
|
.off('click', 'tr.group-header')
|
||||||
|
.off('pagerChange.tsgrouping')
|
||||||
.find('.group-hidden').removeClass('group-hidden').end()
|
.find('.group-hidden').removeClass('group-hidden').end()
|
||||||
.find('tr.group-header').remove();
|
.find('tr.group-header').remove();
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user