Skip to content

Commit

Permalink
Fix pagination option in DataTable initialisation
Browse files Browse the repository at this point in the history
Paging is a boolean that enables or disables the pagination feature.

  https://datatables.net/reference/option/paging
  • Loading branch information
bgeuken committed Dec 4, 2018
1 parent cbe7063 commit 25a4430
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ $( document ).ready(function() {
// First column has index 0.
{ orderable: false, targets: [6] }
],
paging: 25,
paging: true,
pageLength: 25,
pagingType: "full_numbers",
processing: true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ $(document).ready(function() {
// First column has index 0.
{ orderable: false, targets: [6] }
],
paging: 25,
paging: true,
pageLength: 25,
pagingType: "full_numbers",
processing: true,
Expand Down

0 comments on commit 25a4430

Please sign in to comment.