tab changes
tab changes
Tab to next column in Editor 1.5.0 - on cell focus the user can use tab to next column. Any help on how to initiate tab when the user is at the last cell in the table and carry over to another table?
``` table.on( 'key-focus', function ( e, datatable, cell ) {
if (row <=9){
editor.inline( cell.index(), {
onBlur: 'submit'
} );}
else
{editor_2.inline( cell.index(), {
onBlur: 'submit'
} );}
} );
```
This discussion has been closed.