1
0
Fork 0
mirror of https://github.com/koalyptus/TableFilter.git synced 2024-06-08 17:02:30 +02:00

Updated 1.04 Paging (markdown)

koalyptus 2016-07-09 22:23:26 +10:00
parent ab7e95c061
commit ef99b74ed3

@ -274,7 +274,7 @@ var tf = new TableFilter('my-table-id');
<th>row-paged</th>
<td>Event emitted just after a row is included in a page during paging calculation</td>
<td>
Subscribers receives the following parameters:
Subscribers receive the following parameters:
<ul>
<li><code>tf</code> - current TableFilter instance</li>
<li><code>rowIdx</code> - index of row</li>
@ -283,7 +283,7 @@ var tf = new TableFilter('my-table-id');
</ul>
</td>
<td>
<pre>,
<pre>
tf.emitter.on(['row-paged'], function(tf, rowIdx, validRowIdx, rowDisplayed){
console.log(tf, rowIdx, validRowIdx, rowDisplayed);
});