Get values of all columns of a row in other variable before delete the row

Get values of all columns of a row in other variable before delete the row

lavanialavania Posts: 10Questions: 4Answers: 0

editor6.on( 'preSubmit', function ( e, d, action ) {
if ( action === 'remove') {

   // READ Value of All columns of row
        }
    });

This question has an accepted answers - jump to answer

Answers

  • kthorngrenkthorngren Posts: 20,325Questions: 26Answers: 4,774
    Answer ✓

    Take a look at the preSubmit docs. The second parameter contains the data for the row submitted to the server.

    Kevin

Sign In or Register to comment.