transaction_NextPage method
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();
}
}