After row delete I need to do some aditional actions on the php side

After row delete I need to do some aditional actions on the php side

itramitram Posts: 41Questions: 14Answers: 0

After row delete I need to do some aditional actions on the php side. I guess I could use an ajax call on editor 'postRemove' event, but is it possible to do these actions on the editor controller?

This question has an accepted answers - jump to answer

Answers

  • kthorngrenkthorngren Posts: 20,139Questions: 26Answers: 4,734
    Answer ✓

    I don't use the Editor server side libraries but I believe there are events you can use. See if this is what you are looking for:
    https://editor.datatables.net/manual/php/events

    Kevin

  • itramitram Posts: 41Questions: 14Answers: 0

    Thanks Kevin for pointing me into the right direction.
    ->on('postRemove', function ($editor, $id, $values) {
    on editor is what I was looking for.

Sign In or Register to comment.