Execute a function after new row added

Execute a function after new row added

tduneventtdunevent Posts: 4Questions: 2Answers: 0

I am using the standard editor button shown below to allow my user to enter a new row. Is it possible to execute a function after the row is added? In my implementation, I need to take the user to a PHP page where more information can be entered so I w need to do a location.href = "".

create: {
button: "New",
title: "Create new template",
submit: "Create"
},

This question has an accepted answers - jump to answer

Answers

  • allanallan Posts: 61,743Questions: 1Answers: 10,111 Site admin
    Answer ✓

    On the client-side you could listen for the postCreate event. is that what you want?

    Allan

  • tduneventtdunevent Posts: 4Questions: 2Answers: 0

    Perfect. Thank!

This discussion has been closed.