You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When viewing a log file that spans multiple pages, the Next Page button is enabled, but when pressed, it does not display the next page. The individual page number buttons work as expected, as well as the Previous Page button.
Using version 1.07 on the package.
The text was updated successfully, but these errors were encountered:
@jkarwisch thank you for reporting this issue. I think it similiar with #issue 1, the jquery.dataTables.min.js for somehow need to parse the variable with parseInt.
Since this recited code seems to be outdated, I have another possible bugfix for anyone experiencing this problem.
This behaviour simply occurs whenever you define within the options:
"pageLength": "30" //bad
instead of
"pageLength": 30 //good
DataTables interprets this as 030 for its internal counters, which leads to this error.
When viewing a log file that spans multiple pages, the Next Page button is enabled, but when pressed, it does not display the next page. The individual page number buttons work as expected, as well as the Previous Page button.
Using version 1.07 on the package.
The text was updated successfully, but these errors were encountered: