This property will select a row in the Data Table by default. The row is referenced by index number where 1 is the first row (Field headings are ignored).
The Default Row Index controls the default index of the control.
If the default index is based on a rule, and the value of the rule changes, then the selected index of the control will be changed to be the default index.
Property Type: Static
Default Value: No default value is applied to this property
Hierarchical Reference: ControlName.DefaultRowIndex
Ensure the property is a static property (It will display the gray orb alongside the property name)
The default value of the static property can be changed by typing the required value directly into the property field
Default Row Index Property Value (static) | Result |
---|---|
3 | The third row will be selected by default when the control loads. This will remain until another row is selected by the user. |
A rule can also be built for this property by changing the type to dynamic.
See How To: Change A Static Property To A Dynamic Property.
Default Row Index Property Value (Dynamic) | Result |
---|---|
IF(CustomerFilterReturn="A to L",1,325) | Will select the first row when the control CustomerFilter equals "A to L". Otherwise row 325 will be selected. |
Value set in Form Designer. Static properties can be made Dynamic by double clicking the gray radio button.