0

アプリケーションのページネーションをサポートするために bootpag ページネーションを使用しています

<div id="demo">
    <?php //print_r($data);?>
</div>
<div id="page-selection"></div>

$('#page-selection').bootpag({
total: <?=$totalRows?>
}).on("page", function(event, /* page number here */ num)
{
    $("#demo").html("Insert content"); // some ajax content loading...  
});

ページネーションは機能していますが、すべてのページに同じ行が表示されています。ページごとに 5 行を設定し、残りの行を次のページに表示する必要があります。bootpag を使用してページごとの行数を設定するにはどうすればよいですか?

4

0 に答える 0