We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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' ); } }); ...
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The Previous and Next buttons of the DataTables component introduced in the system are invalid.
eg:
Temporary solution:
The text was updated successfully, but these errors were encountered: