The Previous and Next buttons of the DataTables component introduced in the system are invalid.
eg:

Temporary solution:
const dataTableParams = {
...
};
// define table
const table = $(`#${elementId} #grid`).dataTable(dataTableParams);
$('.dataTables_paginate ul').addClass('pagination');
// Manually add click events
$('.dataTables_paginate .pagination li').on('click', (event) => {
if ($(event.currentTarget).hasClass('disabled')) {
return;
}
if ($(event.currentTarget).hasClass('next')){
table.fnPageChange( 'next' );
}
if ($(event.currentTarget).hasClass('prev')) {
table.fnPageChange( 'previous' );
}
});
...