JavaScript
{dialog.object}formViewNavigate Method
Syntax
{dialog.Object}.formViewNavigate(UXformViewControlId,direction)
Arguments
- UXformViewControlId
FormView control's ID.
- direction
The direction to navigate. Value can be one of the following:
- Direction
- Meaning
- first
Navigate to the first field.
- last
Navigate to the last field.
- next
Navigate to the next field.
- prev
Navigate to the previous field.
Description
Sets focus to a field in the FormView (and opens the Editor - if defined - for the target field.)
Example
//Sets focus to the last field on the form
{dialog.object}.formViewNavigate('FORM_1','last');See Also