Onkeydown with filtered datatable

Hi,

I found some code on the site to handle keydown and keyup to enable fast editing of cells within a datatable. However I have 2 grids where a selection in the top grid filters the second one. With this setup the keydown doesn’t work.

So I created a snippet (http://webix.com/snippet/cd342140) and tested with inline data, this works fine so it seems to be an issue with navigating data loaded via a url.

Is there something else I need to do?

Thanks

Gary

var rowId = ed.row + 1;

This is a wrong line. It must be

var rowId = this.getNextId(ed.row);

similar, in other block of code ed.row - 1 must be replaced with this.getPrevId(ed.row)

great thats it thanks