|
To make a form button, do the following:
Menu: Insert>Button
Select the button, make its type = button (not submit or cancel). Give it a name and value (value is what will appear on the button, so maybe "Go Back" or similar).
With the button still selected, choose Item>Extended from the menu. In the resulting dialog, press New, and enter the following:
Name: onClick
Value: window.history.go(-1);
(Name and Value above are to illustrate the fields that you enter the data into, take care to enter everything after the colon exactly as written.)
Okay the dialogs, and preview. This button will work precisely as a back button.
If you want to do this with a graphic button, simply apply this URL to the image:
javascript:window.history.go(-1);
WLD |