SAIL Function: a!gridLayoutColumnConfig()
Defines a column configuration for use in an Editable Grid.
Parameters
Name | Keyword | Type | Description |
---|---|---|---|
Width | width | Text | Column width. Valid values are "DISTRIBUTE" (default), "NARROW" and "ICON" . |
Weight | weight | Number (Integer) | Determines how wide distributed columns are in relation to each other. Valid values include integers from 1 (default) to 10. |
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
=a!gridLayoutColumnConfig(
width: "ICON"
)