Page 1 of 1

PopUp Windo when I press the save button

Posted: 27 Feb 2020
by TWendt
Hi all,

it is possible that you give me an example for a PopUp window if the user press the save button.

I need a message "Are you sure?" before the item is saved.

Best wishes
Tom

Re: PopUp Windo when I press the save button

Posted: 28 Feb 2020
by Leslie
Hi !

Try this code in your JS :

fd.onsubmit(function () {
alert('Are you sure?');
return true;
});

But the alert box have only one button : "OK".
So the user doesn't have a real choice. :P

Re: PopUp Windo when I press the save button

Posted: 02 Mar 2020
by mnikitina
Hello TWendt,

You can use the confirm box, e.g.:

Code: Select all

fd.onsubmit(function () {
var confirmAction = confirm('Are you sure?');
if(confirmAction == true) {
return true;
}
else{
	return false;
}
});