The LinksTo element is an advanced Form component that is used to create a navigational jump from one Form into another, without any relationship between the two Forms being represented in their schemata (unlike BelongsTo).
Here is an example code:
1 2 3 4 5 6 7 8 9 10 11 |
<Form id="firstForm"> ... <LinksTo id="secondFormLink" form="secondForm" /> ... </Form> <Form id="secondForm"> ... </Form> </code> declares two Forms (with IDs "firstForm" and "secondForm") where the first Form has a link to the second. When the user reaches the LinksTo field they will be transported to a new instance of the second Form. Remember that instances of these Forms are not related in any way by the presence of this LinksTo field.. |
Click here to see the full list of attributes that you can include within the LinksTo tag.