Function: a!gridRowLayout()
Displays a row of components within an editable grid.
Parameters
Name | Keyword | Type | Description |
---|---|---|---|
Contents | contents | Array of Grid-Compatible Interface Components | Supports Barcode, Checkboxes, Date, Date & Time, Dropdown, Multiple Dropdown, Decimal, Encrypted Text, File Upload, Image, Integer, Link, Paragraph, Pickers, Progress Bar, Radio Buttons, Rich Text, and Text. |
Identifier | id | Text or Integer | When selection is enabled, this value is used to determine which row is selected. Must be a scalar value. |
Selection disabled | selectionDisabled | Boolean | When selection is enabled, determines if the selection checkbox is disabled for this row. Default is false . |
Visibility | showWhen | Boolean | Determines whether the layout is displayed on the interface. When set to false, the layout is hidden and is not evaluated. Default: true. |
Notes
Examples
This example needs to be used with the a!gridLayout()
function for it to display anything. Examples that you can see in action are available in the Grid Layout component section.
1
2
3
4
5
6
7
=a!gridRowLayout(
contents: {
a!textField(
value: "Cell"
)
}
)
On This Page