mirror of
https://github.com/Mottie/tablesorter.git
synced 2024-11-15 23:54:22 +00:00
Pager: add cacheIndex variable & update docs
Added a pager variable section
This commit is contained in:
parent
a63d67f41e
commit
8921894717
@ -325,7 +325,9 @@
|
||||
s = ( p.page * p.size ),
|
||||
e = s + p.size,
|
||||
f = c.widgetOptions && c.widgetOptions.filter_filteredRow || 'filtered',
|
||||
last = 0, // for cache indexing
|
||||
j = 0; // size counter
|
||||
p.cacheIndex = [];
|
||||
for ( i = 0; i < l; i++ ){
|
||||
if ( !rows[i].className.match(f) ) {
|
||||
if (j === s && rows[i].className.match(c.cssChildRow)) {
|
||||
@ -333,6 +335,10 @@
|
||||
rows[i].style.display = 'none';
|
||||
} else {
|
||||
rows[i].style.display = ( j >= s && j < e ) ? '' : 'none';
|
||||
if (last !== j && j >= s && j < e) {
|
||||
p.cacheIndex.push(i);
|
||||
last = j;
|
||||
}
|
||||
// don't count child rows
|
||||
j += rows[i].className.match(c.cssChildRow + '|' + c.selectorRemove.slice(1)) && !p.countChildRows ? 0 : 1;
|
||||
if ( j === e && rows[i].style.display !== 'none' && rows[i].className.match(ts.css.cssHasChild) ) {
|
||||
@ -586,6 +592,7 @@
|
||||
// lets not render the table more than once
|
||||
moveToLastPage(table, p);
|
||||
}
|
||||
p.cacheIndex = [];
|
||||
p.isDisabled = false; // needed because sorting will change the page and re-enable the pager
|
||||
if (p.initialized) { $t.trigger('pagerChange', p); }
|
||||
|
||||
@ -604,6 +611,7 @@
|
||||
count++;
|
||||
if (count > s && added <= e) {
|
||||
added++;
|
||||
p.cacheIndex.push(index);
|
||||
$tb.append(rows[index]);
|
||||
}
|
||||
}
|
||||
|
@ -291,13 +291,17 @@
|
||||
<div>
|
||||
<pre class="prettyprint lang-html"><!-- Bootstrap stylesheet -->
|
||||
<link rel="stylesheet" href="css/bootstrap.min.css">
|
||||
|
||||
<!-- bootstrap widget theme -->
|
||||
<link rel="stylesheet" href="/tablesorter/css/theme.bootstrap.css">
|
||||
<link rel="stylesheet" href="css/theme.bootstrap.css">
|
||||
|
||||
<!-- tablesorter plugin -->
|
||||
<script src="../js/jquery.tablesorter.js"></script>
|
||||
<script src="js/jquery.tablesorter.js"></script>
|
||||
<!-- tablesorter widget file - loaded after the plugin -->
|
||||
<script src="../js/jquery.tablesorter.widgets.js"></script></pre>
|
||||
<script src="js/jquery.tablesorter.widgets.js"></script>
|
||||
|
||||
<!-- pager plugin -->
|
||||
<link rel="stylesheet" href="css/jquery.tablesorter.pager.css">
|
||||
<script src="js/jquery.tablesorter.pager.js"></script></pre>
|
||||
</div>
|
||||
|
||||
<h2>Javascript</h2>
|
||||
|
206
docs/index.html
206
docs/index.html
@ -5562,6 +5562,7 @@ var wo = $('#mytable').data('tablesorter').widgetOptions;
|
||||
</tr>
|
||||
</tbody>
|
||||
|
||||
<tbody>
|
||||
<tr id="variable-any-match">
|
||||
<td><a href="#" class="permalink">wo.filter_$anyMatch</a></td>
|
||||
<td>jQuery Object</td>
|
||||
@ -5643,6 +5644,211 @@ var wo = $('#mytable').data('tablesorter').widgetOptions;
|
||||
<td></td>
|
||||
</tr>
|
||||
|
||||
</tbody>
|
||||
|
||||
<!-- non-sorting tbody -->
|
||||
<tbody class="tablesorter-infoOnly">
|
||||
<tr id="pager-variables">
|
||||
<th class="nobold"><a href="#" class="permalink">pager</a></th>
|
||||
<th></th>
|
||||
<th class="nobold">Access the pager options<sup><strong>†</strong></sup> (<code>p</code>) using any of these methods:
|
||||
<div class="collapsible">
|
||||
<br>
|
||||
<pre class="prettyprint lang-js">// pure js, get the first table (zero index)
|
||||
var p = document.getElementsByTagName('table')[0].config.pager;
|
||||
// or by table ID
|
||||
var p = document.getElementById('mytable').config.pager;
|
||||
|
||||
// using jQuery, get first table (zero index)
|
||||
var p = $('table')[0].config.pager;
|
||||
// or from the jQuery data
|
||||
var p = $('#mytable').data('tablesorter').pager;
|
||||
</pre>
|
||||
<strong>†</strong> These methods are the same for both the pager addon and the pager widget.
|
||||
<p></p>
|
||||
<span class="label label-info">*NOTE*</span> This pager variable also contains all of the default pager option settings.
|
||||
<p></p>
|
||||
<span class="label label-warning">*NOTE*</span> When using the pager widget, changing a value within the <code>widgetOptions</code> for the pager may not update the pager as expected. The pager widget uses most of the values within <code>config.pager</code> instead of the pager <code>widgetOptions</code> after initialization.
|
||||
</div>
|
||||
</th>
|
||||
<th></th>
|
||||
</tr>
|
||||
</tbody>
|
||||
|
||||
<tbody>
|
||||
|
||||
<tr id="variable-pager-container">
|
||||
<td><a href="#" class="permalink">p.$container</a></td>
|
||||
<td>jQuery Object</td>
|
||||
<td>Contains a jQuery object pointing to a pager block(s).
|
||||
<div class="collapsible">
|
||||
<br>
|
||||
The <code>table.config.pager.$container</code> variable is targeted using the pager <a href="#pager-container"><code>container</code></a> option and will have a class name of <code>"tablesorter-pager"</code> applied.<br>
|
||||
<br>
|
||||
The container(s) may include the pager navigation arrows, page size selector, page selector and/or output block; the contents are completely customizable and all components are optional.
|
||||
</div>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
|
||||
<tr id="variable-pager-goto">
|
||||
<td><a href="#" class="permalink">p.$goto</a></td>
|
||||
<td>jQuery Object</td>
|
||||
<td>Contains a jQuery object pointing to an empty select within the pager block(s).
|
||||
<div class="collapsible">
|
||||
<br>
|
||||
The <code>table.config.pager.$goto</code> variable is targeted using the pager <a href="#pager-cssgoto"><code>cssGoto</code></a> option.<br>
|
||||
<br>
|
||||
The contents of this select element are dynamically updated if the page size is changed or if the table gets filtered.
|
||||
</div>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
|
||||
<tr id="variable-pager-size">
|
||||
<td><a href="#" class="permalink">p.$size</a></td>
|
||||
<td>jQuery Object</td>
|
||||
<td>Contains a jQuery object pointing to a select with the desired page size settings already in place.
|
||||
<div class="collapsible">
|
||||
<br>
|
||||
The <code>table.config.pager.$size</code> variable is targeted using the pager <a href="#pager-csspagesize"><code>cssPageSize</code></a> option.<br>
|
||||
<br>
|
||||
The contents of this select element must be set up with the desired page size settings before initializing tablesorter.<br>
|
||||
<br>
|
||||
Also, because Internet Explorer does not appear to get the select value from the option text, please include a value attribute with all options. For example:
|
||||
<pre class="prettyprint lang-html"><select class="pagesize">
|
||||
<option value="10">10</option>
|
||||
<option value="20">20</option>
|
||||
<option value="30">30</option>
|
||||
<option value="40">40</option>
|
||||
</select></pre>
|
||||
</div>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
|
||||
<tr id="variable-pager-cache-index">
|
||||
<td><a href="#" class="permalink">p.cacheIndex</a></td>
|
||||
<td>Array</td>
|
||||
<td>Contains an array of zero-based row indexes of rows that currently displayed within the table.
|
||||
<div class="collapsible">
|
||||
<br>
|
||||
For example, if you want to get the parsed values for the rows currently displayed within the pager, use the <code>table.config.pager.cacheIndex</code> variable as follows:
|
||||
<pre class="prettyprint lang-js">var c = $('table')[0].config,
|
||||
p = c.pager,
|
||||
// the cache may not have a zero index if there are any "info-only" tbodies above the main tbody
|
||||
cache = c.cache[0].normalized,
|
||||
cachedValues = [];
|
||||
$.each( p.cacheIndex, function(i, v) {
|
||||
// cache[v] will be an array of parsed values for each cell in selected row
|
||||
cachedValues.push( cache[v] );
|
||||
});</pre>
|
||||
the <code>p.cacheIndex</code> variable get updated whenever the table is sorted, filtered or the pager changes pages or page size.
|
||||
</div>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
|
||||
<tr id="variable-pager-startrow">
|
||||
<td><a href="#" class="permalink">p.startRow</a></td>
|
||||
<td>Numeric</td>
|
||||
<td>Contains a one-based index of the first row visible in the pager.
|
||||
<div class="collapsible">
|
||||
<br>
|
||||
The <code>{startRow}</code> tag in the pager <a href="#pager-output"><code>output</code></a> option is replaced by this value; and it does not correspond to the row index within the cache.
|
||||
</div>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
|
||||
<tr id="variable-pager-endrow">
|
||||
<td><a href="#" class="permalink">p.endRow</a></td>
|
||||
<td>Numeric</td>
|
||||
<td>Contains a one-based index of the last row visible in the pager.
|
||||
<div class="collapsible">
|
||||
<br>
|
||||
The <code>{endRow}</code> tag in the pager <a href="#pager-output"><code>output</code></a> option is replaced by this value; and it does not correspond to the row index within the cache.
|
||||
</div>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
|
||||
<tr id="variable-pager-filteredpages">
|
||||
<td><a href="#" class="permalink">p.filteredPages</a></td>
|
||||
<td>Numeric</td>
|
||||
<td>Contains the page count, determined by the page size setting, after the table is filtered. It equals the <code>totalPages</code> if no filters are applied.
|
||||
<div class="collapsible">
|
||||
<br>
|
||||
The <code>{filteredPages}</code> tag in the pager <a href="#pager-output"><code>output</code></a> option is replaced by this value.
|
||||
</div>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
|
||||
<tr id="variable-pager-filteredrows">
|
||||
<td><a href="#" class="permalink">p.filteredRows</a></td>
|
||||
<td>Numeric</td>
|
||||
<td>Contains the number of rows accessible by the pager after the table is filtered. It equals the <code>totalRows</code> if no filters are applied.
|
||||
<div class="collapsible">
|
||||
<br>
|
||||
The <code>{filteredRows}</code> tag in the pager <a href="#pager-output"><code>output</code></a> option is replaced by this value.
|
||||
</div>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
|
||||
<tr id="variable-pager-page">
|
||||
<td><a href="#" class="permalink">p.page</a></td>
|
||||
<td>Numeric</td>
|
||||
<td>Contains a one-based index of the current page visible in the pager.
|
||||
<div class="collapsible">
|
||||
<br>
|
||||
The <code>{page}</code> tag in the pager <a href="#pager-output"><code>output</code></a> option is replaced by this value.<br>
|
||||
<br>
|
||||
Initially, this value is set by either the pager <a href="#pager-page"><code>page</code></a> option or from local storage if the <a href="#save-pages"><code>savePages</code></a> option is <code>true</code>. It is then updated by user interaction with the page selector (targetted by the <a href="#pager-cssgoto"><code>cssGoto</code></a> option or programmically by the <a href="#pageset"><code>pageSet</code></a> or <a href="#pageandsize"><code>pageAndSize</code></a> method.
|
||||
</div>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
|
||||
<tr id="variable-pager-size">
|
||||
<td><a href="#" class="permalink">p.size</a></td>
|
||||
<td>Numeric</td>
|
||||
<td>Contains the currently selected page size.
|
||||
<div class="collapsible">
|
||||
<br>
|
||||
Initially, this value is set by either the pager <a href="#pager-size"><code>size</code></a> option or from local storage if the <a href="#save-pages"><code>savePages</code></a> option is <code>true</code>. It is then updated by user interaction with the size selector (targetted by the <a href="#pager-csspagesize"><code>cssPageSize</code></a> option or programmically by the <a href="#pagesize"><code>pageSize</code></a> or <a href="#pageandsize"><code>pageAndSize</code></a> method.
|
||||
</div>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
|
||||
<tr id="variable-pager-totalpages">
|
||||
<td><a href="#" class="permalink">p.totalPages</a></td>
|
||||
<td>Numeric</td>
|
||||
<td>Contains the total page count as determined by the page size setting.
|
||||
<div class="collapsible">
|
||||
<br>
|
||||
The <code>{totalPages}</code> tag in the pager <a href="#pager-output"><code>output</code></a> option is replaced by this value.
|
||||
</div>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
|
||||
<tr id="variable-pager-totalrows">
|
||||
<td><a href="#" class="permalink">p.totalRows</a></td>
|
||||
<td>Numeric</td>
|
||||
<td>Contains the total number of rows within the table
|
||||
<div class="collapsible">
|
||||
<br>
|
||||
The <code>{totalRows}</code> tag in the pager <a href="#pager-output"><code>output</code></a> option is replaced by this value.
|
||||
</div>
|
||||
</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
|
||||
</tbody>
|
||||
|
||||
</table>
|
||||
|
||||
<div class="tip">
|
||||
|
@ -564,7 +564,9 @@ tsp = ts.pager = {
|
||||
s = ( p.page * p.size ),
|
||||
e = s + p.size,
|
||||
f = wo && wo.filter_filteredRow || 'filtered',
|
||||
last = 0, // for cache indexing
|
||||
j = 0; // size counter
|
||||
p.cacheIndex = [];
|
||||
for ( i = 0; i < l; i++ ){
|
||||
if ( !rows[i].className.match(f) ) {
|
||||
if (j === s && rows[i].className.match(c.cssChildRow)) {
|
||||
@ -572,6 +574,10 @@ tsp = ts.pager = {
|
||||
rows[i].style.display = 'none';
|
||||
} else {
|
||||
rows[i].style.display = ( j >= s && j < e ) ? '' : 'none';
|
||||
if ( last !== j && j >= s && j < e ) {
|
||||
p.cacheIndex.push(i);
|
||||
last = j;
|
||||
}
|
||||
// don't count child rows
|
||||
j += rows[i].className.match(c.cssChildRow + '|' + c.selectorRemove.slice(1)) && !wo.pager_countChildRows ? 0 : 1;
|
||||
if ( j === e && rows[i].style.display !== 'none' && rows[i].className.match(ts.css.cssHasChild) ) {
|
||||
@ -815,6 +821,7 @@ tsp = ts.pager = {
|
||||
// lets not render the table more than once
|
||||
return tsp.moveToLastPage(table, p);
|
||||
}
|
||||
p.cacheIndex = [];
|
||||
p.isDisabled = false; // needed because sorting will change the page and re-enable the pager
|
||||
if (p.initialized) { c.$table.trigger('pagerChange', c); }
|
||||
if ( !wo.pager_removeRows ) {
|
||||
@ -832,6 +839,7 @@ tsp = ts.pager = {
|
||||
count++;
|
||||
if (count > s && added <= e) {
|
||||
added++;
|
||||
p.cacheIndex.push(index);
|
||||
$tb.append(rows[index]);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user