Files
PowderCoatingLogix/publish-output/wwwroot/js/site.js
T
2026-04-23 21:38:24 -04:00

16 lines
571 B
JavaScript

// Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
// for details on configuring this project to bundle and minify static web assets.
// Write your JavaScript code.
/**
* Change page size for pagination
* @param {number} newSize - The new page size
*/
function changePageSize(newSize) {
const url = new URL(window.location);
url.searchParams.set('pageSize', newSize);
url.searchParams.set('pageNumber', '1'); // Reset to page 1 when changing page size
window.location.href = url.toString();
}