Responsive Editor with Tab control

Responsive Editor with Tab control

daveitalydaveitaly Posts: 3Questions: 2Answers: 0
edited July 2017 in Free community support

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

Answers

  • allanallan Posts: 64,126Questions: 1Answers: 10,579 Site admin
    Answer ✓

    Good point - thanks for sharing that with us!

    Allan

This discussion has been closed.