get the data on open event

get the data on open event

pmengopmengo Posts: 74Questions: 37Answers: 2

Need help on getting the data of the row clicked for in the open event of the editor....

ex:

this.editor.on('open', function (e, mode, action) {
****get the row data here

This question has an accepted answers - jump to answer

Answers

  • allanallan Posts: 61,743Questions: 1Answers: 10,111 Site admin
    Answer ✓
    table.row( editor.modifier() ).data();
    

    should do it. modifier() and row().data() are the relevant bits of documentation.

    Allan

  • pmengopmengo Posts: 74Questions: 37Answers: 2

    thank you . i m gonna try it

  • pmengopmengo Posts: 74Questions: 37Answers: 2

    thanks allan....

This discussion has been closed.