Editable Grid Row Component

Row

Function: a!gridRowLayout()

Displays a row of components within an editable grid.

Parameters

Name Keyword Types Description

Contents

contents

List of Variant

Array of components to display in the grid cell. Supported components: Barcode, Checkboxes, Date, Date & Time, Dropdown, Decimal, Encrypted Text, File Upload, Image, Integer, Link, Multiple Dropdown, Paragraph, Pickers, Progress Bar, Radio Buttons, Rich Text, and Text.

Identifier

id

Any Type

Value that uniquely identifies this row for selection.

Selection disabled

selectionDisabled

Boolean

When selection is enabled, determines if the selection checkbox is disabled for this row. Default: false.

Visibility

showWhen

Boolean

Determines whether the row is displayed in the grid. When set to false, the row is hidden and is not evaluated. Default: true.

Notes

  • Some interface-component configurations do not take effect when placed in a grid cell. Refer to the grid layout section for details.

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"
    )
  }
)

The following patterns include usage of the Editable Grid Row Component.

Open in Github Built: Wed, Aug 17, 2022 (01:05:05 PM)

On This Page

FEEDBACK