Hi.... @allan, i am trying to work with datatable key arrow navigation, datatable is a child table,
Hi.... @allan, i am trying to work with datatable key arrow navigation, datatable is a child table,

but i am unable to use scrolling with key arrows, can you help to come out from this problem.
This discussion has been closed.
Answers
Can you give me a link to a test case showing the issue so I can see what you are working with.
Thanks,
Allan
sorry, i dont have link available right now, but i can send you the js file, please go through that code snippet for keyup and down navigation for datatable row selection, that code working fine to select the data table row, but its not scrolling with keydown or up function.
//code snipped for keydown and up navigation for datatable.
$('#partyListTableID tbody').on( 'mouseover', 'tr', function (e) {
var tr = $(this);
here, when i mouseover on the datatable, arrow keyup and down working but not scrolling.
here, i sent working page image, when i reach last row on the table, arrow keys not scrolling to view next row on the datatable
I don't see anything in your code that will handle the scrolling for the table.
If you want to implement this yourself, you could have a look at the KeyTable implementation of that action and see how it handles it, then base your code on that.
Allan
thank you @ allan for spent your precious time to hv look at code.