Responsive Editor with Tab control
Responsive Editor with Tab control

In order to avoid the Unable to automatically determine field from source. Please specify the field name error when using the responsive table and tabbing between cells, be sure to skip the first cell on key-focus as shown below:
// Inline editing on tab focus
table.on( 'key-focus', function ( e, datatable, cell ) {
if (cell.index().column !== 1)
editor.inline( cell.index() );
});
This question has an accepted answers - jump to answer
This discussion has been closed.
Answers
Good point - thanks for sharing that with us!
Allan