<savebutton>
The <savebutton> tag allows you to move the default Save button at the top of an input view to anywhere within an input view. In fact, you can use this tag multiple times so the button additionally appears at the top, at the bottom, or anywhere else on the page.
| Attribute | Allowed Values | Requirements | Description |
|---|---|---|---|
| view | %viewname | Optional | Navigates to this view upon saving. |
| * | * | Optional | Passes any HTML attribute–except type and onclick–through to the rendered tag. |
To change the value of the text within this button, use the <value> attribute.
Example
Copy Code
<savebutton value="Save Record"/>
You can also designate a view to go to after clicking the Save button. For example, an input may be broken into a few pages so users only see five fields at a time instead of 100.
Copy Code
<savebutton view="Input View 2"></savebutton>
Including the <savebutton> overwrites the default header section. Thus, the "New Entry" text and default buttons are removed from the input view.