This topic is locked
[SOLVED]

 Edit Page Pop up Warning

3/4/2010 5:59:19 AM
PHPRunner General questions
S
swanside author

Hello.
Would it be possible that once you click to go onto an edit page, if you dont click on save, but something else a popup comes up asking if you are sure you want to leave this page without saving?
Cheers

Paul.

S
stealthwifi 3/8/2010



Hello.
Would it be possible that once you click to go onto an edit page, if you dont click on save, but something else a popup comes up asking if you are sure you want to leave this page without saving?
Cheers

Paul.


Once you determine the proper event where you want the popup add code like this:

note - change to fit your requirments this just shows how to add javascript alert box



print '<script type="text/javascript">';

print 'alert("You are now leaving without saving!")';

print '</script>';


Another example would be:



print '<script type="text/javascript">';

print 'var r=confirm("Press a button")';

print 'if (r==true)';

print ' {';

print ' document.write("You pressed OK!")';

print ' }';

print 'else';

print ' {';

print ' document.write("You pressed Cancel!")';

print ' }';

print '}';

print '</script>';