savings_NextPage method

void savings_NextPage()

Implementation

void savings_NextPage() {
  if (savings_CurrentPage.value == savings_TotalPages.value) {
    return;
  }
  if (savings_CurrentPage.value * savings_RowsPerPage.value <
      savings_Data.length) {
    savings_CurrentPage.value++;
    savings_UpdatePaginatedData();
  }
}