Hi there..
I have nearly finished a table which has hidden object and sorts..
$(".ICS_BlueTable").tablesorter();
$(".ICS_BlueTable").bind("sortStart",function() {
$('.ICS_Artist_Hide',this).toggle();
$('tr',this).removeClass("ICS_Artist_Hide");
}).bind("sortEnd",function() {
$("tr:gt(4)", this).addClass("ICS_Artist_Hide");
$('.ICS_Artist_Hide',this).toggle();
});
The problem with this is that there is a visible "flick" when the sorting is done as you can see the content showing and hiding. Is there a way to just recalculate the hidden items and then "refresh" the current table so that it just shows the ones that it needs to without a "flick".
Thanks
Chris