transaction_NextPage method

void transaction_NextPage()

Implementation

void transaction_NextPage() {
  if (transaction_CurrentPage.value == transaction_TotalPages.value) {
    return;
  }
  if (transaction_CurrentPage.value * transaction_RowsPerPage.value <
      transaction_Data.length) {
    transaction_CurrentPage.value++;
    transaction_UpdatePaginatedData();
  }
}