Bulleted List

Bulleted List

Function: a!richTextBulletedList()

Displays a bulleted list within a rich text component.

Parameters

Name Keyword Type Description
Items items Text, Styled Text, or List Array of text to display as a bulleted list. Text can be further formatted using a!richTextItem(). Nested lists can be created using a!richTextListItem()
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

  • Specific values within Items can be further formatted using styled text.
  • Bulleted lists cannot be nested within styled text.
  • If Items is null or contains an empty array, no list is displayed.
  • If the Items array contains one or more null values, those items in the list have no text displayed.

Example

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
=a!richTextDisplayField(
  labelPosition: "COLLAPSED",
  value: {
    a!richTextBulletedList(
      items: {
        "A",
        "B",
        "C",
        a!richTextItem(
          text: "D",
          style: "EMPHASIS"
        ),
        "E"
      }
    )
  }
)

Displays the following:

The following patterns include usage of the Bulleted List.

  • Expand/Collapse Rows in a Tree Grid (Hierarchical Data, Grids): Create a grid that shows hierarchical data and allows users to dynamically expand and collapse rows within the grid.
Open in Github Built: Wed, Aug 17, 2022 (01:05:05 PM)

On This Page

FEEDBACK