Free cookie consent management tool by TermsFeed Editable Grid Column Configuration Component (a!gridLayoutColumnConfig)
Editable Grid Column Configuration Component
This function cannot be used with Custom Record Field Expressions.
For a full list of functions and their feature compatibility, explore the Appian Functions table.

Function

a!gridLayoutColumnConfig( width, weight, showWhen )

Defines a column configuration for use in an Editable Grid.

See also: Grids design guidance

Parameters

Name Keyword Types Description

Width

width

Text

Determines the column width. Valid values: "DISTRIBUTE" (default), "NARROW", "ICON".

Weight

weight

Number (Integer)

Determines how wide distributed columns are in relation to each other. Valid values: integers from 1 (default) to 10.

Visibility

showWhen

Boolean

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

Usage considerations

Using the editable grid's columnConfigurations parameter

  • The number of column configurations need not match the number of columns in the grid. They are matched with the columns by their position in the columnConfigurations array.

Examples

Copy and paste an example into the INTERFACE DEFINITION in EXPRESSION MODE to see it displayed.

Narrow grid column

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
a!gridLayoutColumnConfig(
  width: "ICON"
)

The following patterns include usage of the Editable Grid Column Configuration Component.

Open in Github Built: Fri, Nov 10, 2023 (03:42:48 PM)

Editable Grid Column Configuration Component

FEEDBACK