JavaScript
{dialog.object}formViewRow Method
Syntax
{dialog.Object}.formViewRow(UXformViewControlId [,logicalRowNumber])
Arguments
- UXformViewControlId
FormView control's ID.
- logicalRowNumber
The index into the FormView's data source (assuming that the data source is an array of objects).
Description
Gets or sets the logical 'row' property of the FormView control.
Example
//set the row property to 4, then populate the Form
{dialog.object}.formViewRow('FORM_1',4);
{dialog.object}.formViewRefresh('FORM_1');
//get the row property
var row = {dialog.object}.formViewRow('FORM_1');See Also