My table use ajax to get the data.I use the tabletools to print my table.After I esc the print I found that the table can't sort again.The bug is in the IE8.When I use firefox it works well.
OK.I word out it.Ichange the tabletools.js's code.In the function of "_fnPrintScrollStart".I change that:
//nTheadSize = oSetDT.nTHead.cloneNode(true);
//oSetDT.nTable.insertBefore( nTheadSize, oSetDT.nTable.childNodes[0] );
nTheadSize = $(nScrollHeadTable).html();
$(oSetDT.nTable).append( nTheadSize);
Replies
Allan
//nTheadSize = oSetDT.nTHead.cloneNode(true);
//oSetDT.nTable.insertBefore( nTheadSize, oSetDT.nTable.childNodes[0] );
nTheadSize = $(nScrollHeadTable).html();
$(oSetDT.nTable).append( nTheadSize);
That make my work good.