Trigger function on editor update/create/remove

Trigger function on editor update/create/remove

klinglerklingler Posts: 90Questions: 42Answers: 2

Good morning

Looked through the API but couldn't find a hint how to add a custom function in case a row is created, updated or removed...must be pretty simple I guess (o;

I have two tables, one with orders on top, and one with editable rows at bottom showing the order items...so if I add/change/delete a row belonging to an order, the orders table should be updatd/reloaded as the total amount changes.

thanks in advance
richard

Answers

  • klinglerklingler Posts: 90Questions: 42Answers: 2

    Stupid me ... found it (o;

    editor.on('submitSuccess', function(e, json, data){
        console.log("Rows changed...");
    });
    
This discussion has been closed.