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
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
Thanks Kevin for pointing me into the right direction. ->on('postRemove', function ($editor, $id, $values) { on editor is what I was looking for.
It looks like you're new here. If you want to get involved, click one of these buttons!
Answers
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
Thanks Kevin for pointing me into the right direction.
->on('postRemove', function ($editor, $id, $values) {
on editor is what I was looking for.