Function: a!stampField()
Displays an icon on a colored circular border. Best used as a decorative component to add visual interest to your page. This feature is perfect for drawing attention to important content and reduces the need for custom images.
Name | Keyword | Types | Description |
---|---|---|---|
Label |
|
Text |
Text to display as the field label. |
Label Position |
|
Text |
Determines where the label appears. Valid values:
|
Instructions |
|
Text |
Supplemental text about this field. |
Help Tooltip |
|
Text |
Displays a help icon with the specified text as a tooltip. The tooltip displays a maximum of 500 characters. The help icon does not show when the label position is |
Background Color |
|
Text |
Determines the background color. Valid values: Any valid hex color or |
Icon |
|
Text |
Icon to display inside the stamp. See the documentation for details. |
Content Color |
|
Text |
Determines the icon color. Valid values: Any hex color or |
Size |
|
Text |
Determines the size of the stamp. Valid values: |
Align |
|
Text |
Determines alignment of the stamp. Valid values: |
Tooltip |
|
Text |
Text to display on mouseover (web) or tap (mobile). |
Visibility |
|
Boolean |
Determines whether the component is displayed on the interface. When set to false, the component is hidden and is not evaluated. Default: true. |
Accessibility Text |
|
Text |
Additional text to be announced by screen readers. Used only for accessibility; produces no visible change. |
Notes
"TRANSPARENT"
background displays an icon with a colored circular border. The contentColor
will be used for both the icon and the circular border.Copy and paste an example into the INTERFACE DEFINITION in EXPRESSION MODE to see it displayed.
Stamp with an ACCENT background
1
2
3
4
5
6
7
=a!stampField(
label: "Stamp",
labelPosition: "COLLAPSED",
backgroundColor: "ACCENT",
icon: "STAR",
contentColor: "STANDARD"
)
Displays the following:
Stamp with a TRANSPARENT background
1
2
3
4
5
6
7
a!stampField(
label: "Stamp",
labelPosition: "COLLAPSED",
backgroundColor: "TRANSPARENT",
icon: "HOME",
contentColor: "POSITIVE"
)
Displays the following:
The following patterns include usage of the Stamp Component.
Activity History Pattern (Formatting): The Activity History pattern provides a common style and format for displaying an organization's activity measures.
Milestone Stamp Pattern (Looping): Use the milestone stamp pattern to visually guide users through sequential steps to complete tasks and show users their progress as they move through the steps.