Execute a function after new row added
Execute a function after new row added
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
This discussion has been closed.
Answers
On the client-side you could listen for the
postCreate
event. is that what you want?Allan
Perfect. Thank!