Skip to content

Commit

Permalink
Fixed resources pagination & records limit issue #ERM-105
Browse files Browse the repository at this point in the history
  • Loading branch information
sumbria committed Oct 12, 2023
1 parent 1ecd008 commit bcc27dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions resources/js/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,13 +84,13 @@ $(document).ready(function(){


//bind change event to Records Per Page drop down
$("#numberRecordsPerPage").on('change', function () {
$(document).on('change', '#numberRecordsPerPage', function () {
setNumberOfRecords($(this).val())
});


//bind change event to each of the page start
$(".setPage").on('click', function () {
$(document).on('click', '.setPage', function () {
setPageStart($(this).attr('id'));
});

Expand Down

0 comments on commit bcc27dc

Please sign in to comment.