mirror of
https://github.com/Mottie/tablesorter.git
synced 2024-11-15 23:54:22 +00:00
doc updates
This commit is contained in:
parent
1df22309de
commit
0b1a411894
@ -1560,9 +1560,52 @@ $("table").trigger("destroy", [false];</pre></div>
|
|||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
|
|
||||||
|
<tr id="initialized">
|
||||||
|
<td><a href="#" class="toggle2">initialized</a></td>
|
||||||
|
<td>This event fires when tablesorter has completed initialization.
|
||||||
|
<div class="collapsible">
|
||||||
|
<pre class="js">$(function(){
|
||||||
|
|
||||||
|
// bind to initialized event BEFORE initializing tablesorter
|
||||||
|
$("table")
|
||||||
|
.bind("tablesorter-initialized",function(e, table) {
|
||||||
|
// do something after tablesorter has initialized
|
||||||
|
});
|
||||||
|
|
||||||
|
// initialize the tablesorter plugin
|
||||||
|
$("table").tablesorter({
|
||||||
|
// this is equivalent to the above bind method
|
||||||
|
initialized : function(table){
|
||||||
|
// do something after tablesorter has initialized
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
});</pre></div>
|
||||||
|
</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
<tr id="sortbegin">
|
||||||
|
<td><a href="#" class="toggle2">sortBegin</a></td>
|
||||||
|
<td>This event fires immediately before tablesorter begins resorting the table.
|
||||||
|
<div class="collapsible">
|
||||||
|
<pre class="js">$(function(){
|
||||||
|
|
||||||
|
// initialize the tablesorter plugin
|
||||||
|
$("table").tablesorter();
|
||||||
|
|
||||||
|
// bind to sort events
|
||||||
|
$("table").bind("sortBegin",function(e, table) {
|
||||||
|
// do something crazy!
|
||||||
|
});
|
||||||
|
});</pre></div>
|
||||||
|
</td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
<tr id="sortstart">
|
<tr id="sortstart">
|
||||||
<td><a href="#" class="toggle2">sortStart</a></td>
|
<td><a href="#" class="toggle2">sortStart</a></td>
|
||||||
<td>This event fires when tablesorter is about to start resorting the table.
|
<td>This event fires immediately after the tablesorter header has been clicked, initializing a resort.
|
||||||
<div class="collapsible">
|
<div class="collapsible">
|
||||||
<pre class="js">$(function(){
|
<pre class="js">$(function(){
|
||||||
|
|
||||||
@ -1571,10 +1614,10 @@ $("table").trigger("destroy", [false];</pre></div>
|
|||||||
|
|
||||||
// bind to sort events
|
// bind to sort events
|
||||||
$("table")
|
$("table")
|
||||||
.bind("sortStart",function() {
|
.bind("sortStart",function(e, table) {
|
||||||
$("#overlay").show();
|
$("#overlay").show();
|
||||||
})
|
})
|
||||||
.bind("sortEnd",function() {
|
.bind("sortEnd",function(e, table) {
|
||||||
$("#overlay").hide();
|
$("#overlay").hide();
|
||||||
});
|
});
|
||||||
});</pre></div>
|
});</pre></div>
|
||||||
@ -1593,10 +1636,10 @@ $("table").trigger("destroy", [false];</pre></div>
|
|||||||
|
|
||||||
// bind to sort events
|
// bind to sort events
|
||||||
$("table")
|
$("table")
|
||||||
.bind("sortStart",function() {
|
.bind("sortStart",function(e, table) {
|
||||||
$("#overlay").show();
|
$("#overlay").show();
|
||||||
})
|
})
|
||||||
.bind("sortEnd",function() {
|
.bind("sortEnd",function(e, table) {
|
||||||
$("#overlay").hide();
|
$("#overlay").hide();
|
||||||
});
|
});
|
||||||
});</pre></div>
|
});</pre></div>
|
||||||
|
Loading…
Reference in New Issue
Block a user