Often when you have an event (like a calculation, dependency or dynamic lookup) attached to a field, you'll want to provide the user with a visual clue that they need to click outside of the field for the event to run. This article describes how you can insert a link that will give the user a visual clue to click outside the field, and force the event to run. The link doesn't actually do anything, and simply returns void.
To set it up:
- Click Insert After or Insert Before on your form where you want to place the link
- Choose the Header & Seperation Field Element
- Set the title to an empty string and click the description Tab
- In the description tab enter the following:
<a href='javascript:void(0);'>Re-Calculate Total</a> |
Note: You can change 'Re-Calculate Total' in the above code to anything you want.
   5. Click Save and Close.
This will display a link on your form that will give the user a visual clue that they need to click outside of the field for the events to re-run.