Page 1 of 1

fd.onsubmit with confirm

Posted: 06 Oct 2016
by Dan_C
I'm getting the confirmation popping up twice with the code below -- any ideas for a workaround?



fd.onsubmit(function() {



if (fd.field('PROJECT_ApprovalWF_Comments').value() == '') {

alert('Please add a comment when rejecting.');

return false;

} else if (confirm("To reject this PROJECT and immediately end the approval process without requesting any changes click OK, otherwise click Cancel and choose the Send back option to request changes and restart approval.")) {

fd.field('PROJECT_ApprovalWF_Outcome').value('Reject');

fd.field('PercentComplete').value(100);

fd.field('Status').value('Completed');

fd.field('PROJECT_x0020_Approved_x0020_By').value(_spPageContextInfo.userLoginName);



return true;} else {return false;}



});

Re: fd.onsubmit with confirm

Posted: 07 Oct 2016
by YuriyMedvedev
Hi!

Check, please, if you defined "onsubmit"-function on Submit-button(or any buttons) and in "Javascript" too. Or just added handler in "Javascript" twice.

Re: fd.onsubmit with confirm

Posted: 07 Oct 2016
by Dan_C
I am calling the fd.onsubmit function inside onclick of different save buttons for each kind of response (approve, reject, send back) with different updates in each.



Should I do it a different way?

Re: fd.onsubmit with confirm

Posted: 07 Oct 2016
by Dmitry Kozlov
We've just supposed that you added the same handler twice and as a result you're gettings the confirmation twice.