The Paging Grid Text Column Component has been deprecated.
Function: a!gridTextColumn()
Displays a column of text within a paging grid. To display text in an editable grid, use a text component.
Parameters
Name | Keyword | Type | Description |
---|---|---|---|
Label | label | Text | Name to display for the column heading. |
Field | field | Text | Name of the field that populates the column. Stored into Paging and Selection Value when the user clicks on the column label. A sort indicator displays on the column when its Field argument matches pagingInfo.sort[1].field . |
Data | data | Text Array | Array of valid text values to display in the column. |
Alignment | alignment | Text | Desired alignment for the label and data values within the column. Valid values are "LEFT" , "CENTER" , and "RIGHT" . |
Links | links | Array of Links | Array of values that determine the links to display. Create links with |
Visibility | showWhen | Boolean | Determines whether the component is displayed on the interface. When set to false, the component is hidden and is not evaluated. Default: true. |
Notes
Examples
This example needs to be used with the a!gridField()
function for it to display anything. Examples that you can see in action are available in the Grid Field section.
1
2
3
4
5
=a!gridTextColumn(
label: "Title",
data: {"Director", "Analyst", "Software Engineer", "Sales", "Sales"},
alignment: "LEFT"
)
On This Page