tablesorter プラグインにデータをロードする次のコードがあります。ここでは、pgl のレコード数を表示していますが、50 をクリックして 25 に戻ると、合計数が正しく表示されません。
なぜこれが起こっているのですか?
<div class="rowsPerPage">
<a href="javascript:void(0);" onclick="test1(25);">25</a>
<a href="javascript:void(0);" onclick="test1(50);">50</a>
<a href="javascript:void(0);" onclick="test1(toalnoofrecords);">All</a>
</div>
<div id="pg">
<div id="pgl"></div>
<div id="pgR"></div>
</div>
<table id="testtable">
datas comes here
</table>
<!---- javascript function -->
function test1(val)
{
$(jQuery('#testtable').tablesorterPager({container: $("#pgR"), positionFixed: false,size: value }));
}