Creating multiline bullet in Rich Text Editor

I want to display a list of fields in a bullet format so that each value is its own bullet. How do I structure the text element to accomplish this? I currently have this in the text field:

[ul] [li] Each item's value join with line_break [/li] [/ul]

This however, ends up with only the first value having a bullet and not the 2nd onwards.

Try to create an example in the rich text editor first and save that to the database and you will see how the list is structured. I created a small example:

In order to show this list:

image

this is saved in the database:

[ml][ul][li indent=0 align=left]this[/li][li indent=0 align=left]is[/li][li indent=0 align=left]a[/li][li indent=0 align=left]test[/li][/ul][/ml]

1-3) To make it a little bit more readable in this post:

[ml][ul]
[li indent=0 align=left]this[/li]
[li indent=0 align=left]is[/li]
[li indent=0 align=left]a[/li]
[li indent=0 align=left]test[/li]
[/ul][/ml]

2-3) And you can clean it up a little bit:

[ml][ul]
[li]This[/li]
[li]is[/li]
[li]a[/li]
[li]test[/li]
[/ul][/ml]

3-3) So it seems that the minimum you need to show the list in the rich text editor is:

[ml][ul][li]This[/li][li]is[/li][li]a[/li][li]test[/li][/ul][/ml]

Thanks! How would you do it for this? Application Requirements is a list (Example: `Item 1, Item 2, Item 3)

Screen Shot 2022-02-13 at 6.53.29 PM

It seems this works:

image

Steps:

  1. start with flat text [ml][ul][li]
  2. the list each item’s “field you want to show” join with [/li][li]
  3. end with lfat text [/li][/ul][/ml]
1 Like

That works great! I completely forgot you can write html directly into the text fields

1 Like

This topic was automatically closed after 70 days. New replies are no longer allowed.