Keytables pageup/down bug on non-paging tables

Keytables pageup/down bug on non-paging tables

georgekgeorgek Posts: 1Questions: 1Answers: 0

I have a non paging table with keys enabled:

oTable = $('.datatable-js').dataTable({
data: dataSet,
keys: true.
scrollCollapse: true,
paging: false,
...

Cell focus works fine, arrow keys and home/end are OK but when you press page down or up, it tries to load the next page but actually a next page doesn't exist because paging is false. Is it a bug or am I doing something wrong?

This discussion has been closed.