Webix datatable editrow problem

When in edit mode with editRow, I want to move to next column by pressing right arrow key instead of tab key.
1.
But In my event code, editNext() doesn’t work.
in editRow mode, It seems always current editor is last column’s editor not current focused editor.
Is there any way that I can move the focus to next column with right arrow key or else in editRow mode?
2. at the last column of the row, If I press the tab, the focus suddenly gone.
In the edit(cell) mode, tab pressing on the last column makes the focus move to next row first column. Is there any way to move to next row in editRow mode too?

Thank you in advance.

Hello,
You can use onKeyPress event which occurs when keyboard key is pressed for the control in focus.

 on:{
      	onKeyPress:function(code){
          if (code == 39){
            var now = this.getEditor();
            this.editNext(true, now);
          }
	    }
      }

After you added this part of code you can use right arrow on keyboard to go to the next column
Please check the example: https://snippet.webix.com/s2rlxa3r

belated. but thanyou Nstja