Skip to content

Commit

Permalink
added updateComplete event to docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Mottie committed Oct 25, 2012
1 parent 470fee0 commit 5a62860
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2279,6 +2279,26 @@ <h1>Events</h1>
<td><a href="example-triggers.html">Example</a></td>
</tr>

<tr id="updatecomplete">
<td><a href="#" class="toggle2">updateComplete</a></td>
<td>This event fires after tablesorter has completed updating. (v.2.3.9)
<div class="collapsible">
This occurs after an "update", "updateCell" or "addRows" method was called, but before any callback functions are executed.
<pre class="js">$(function(){

// initialize the tablesorter plugin
$("table").tablesorter();

// bind to sort events
$("table")
.bind("updateComplete",function(e, table) {
// do something after the table has been altered;
});
});</pre></div>
</td>
<td></td>
</tr>

</tbody>

<!-- non-sorting tbody -->
Expand Down

0 comments on commit 5a62860

Please sign in to comment.