Page 1 of 1

Stop saving after a check in before save

Posted: Wed Jul 16, 2014 4:43 pm
by alextouch
Hi

I need to do this:
After I have compiled an edit form, I want to do a check into the database on another table to see if there is a correspondence between data. If yes, the program must save, otherwise it must display an alert and avoid saving.

So it's possible to stop nuBuilder from saving data after a check in Custom Code/Before Save, like "return false" in Javascript?

Thank you
Alex

Re: Stop saving after a check in before save

Posted: Wed Jul 23, 2014 8:58 am
by admin
Alex,

If you attach a message to a variable named $errorMessage in the Before Save event, this message will not continue to save but return its self as a warning.

If $errorMessage remains empty a record will be saved.

Steven

Re: Stop saving after a check in before save

Posted: Tue Aug 19, 2014 11:45 am
by alextouch
Steven

Thank you for your answer.
I did the job with ajax, so that I can check correspondence directly from javascript.

Alex