Solved
Create a nested list to display
How can we create a rich text display menu as showing in the attached format having sub list too.

How can we create a rich text display menu as showing in the attached format having sub list too.


{
a!richTextDisplayField(
labelPosition: "COLLAPSED",
value: {
a!richTextBulletedList(
items: {
"Item 1",
a!richTextListItem(
text: "Item 2",
nestedList: a!richTextBulletedList(
items: {"a", "b"}
)
),
a!richTextListItem(
text: "Item 3",
nestedList: a!richTextBulletedList(
items: {"c", "d"}
)
),
"Item 4"
}
)
}
)
}Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.