tablesorter trigger update

tablesorter trigger update


Hi there!
In my understanding, the following snippet should load data into the
table's body and afterwards update the table:
$("#therapiststable tbody").load('/therapists/tablerows', function() {
    $("#therapiststable").trigger("update");
});
The loading works perfectly, but I'm not sure about the update:
Shouldn't the update sort the table-data again the way it was sorted
before? (That is, sorting after the same columns it was sorted
before.)
Actually for me it doesn't, although the header-field, that's
highlighted because I selected it to sort after before, stays
highlighted...
In the examples on tablesorter.com I only found examples which update
and then apply extra sorting again, so I'm kind of unsure whether
update should also re-sort the table or whether I have to do that
manually.
Thank you,
Benni.