need to get other data before edit completes
need to get other data before edit completes
obrienj
Posts: 93Questions: 38Answers: 0
I have a requirement to get a selection from the user as to how an update is to proceed.
I need to collect this selection and update the data going to the server after the user clicks "Update" but before the server is called.
I would like a popup like alert, confirm, or prompt but the requirement is for 3 radio buttons and those functions don't support.
Anyone have any ideas?
Regards,
Jim
This question has an accepted answers - jump to answer
This discussion has been closed.
Answers
preSubmit
is where you can cancel the submit in Editor. Have it return false initially, and show a custom conformation dialogue box (you'd need to write that bit). Then, if it is confirmed, callsubmit()
and this time inpreSubmit
allow it to go through.Allan