Need to move next cell automatically

I have used {row: 0, col: 1} from left to right move cell once press enter key, its working but when the cell type is read only the cell is selected during move. Is it possible to move automatically to editable cell if the active cell is read only?

I think that you may use a afterSelectionEnd callback. Here http://jsfiddle.net/s39twfzy/ is a demo where I am calling it to check if selected cell has a readOnly state turned on and if it has I am selecting a cell in a next column.

ps. in this demo I did not add any action if the last cell in the row is readOnly

Thanks @aleksandra_budnik its working.

Great :slight_smile: Thanks for confirmation