Can we show list in rich text editor?

0
How to show list of objects in rich text editor using bullets?
asked
1 answers
4

Hello Raveena,

 

Accessing the list of objects in a rich text editor (WYSIWYG) is not possible directly but if you want to show the attribute value of that object, that can be done but it has an indirect method to do as below steps;

 

Step 1: You need to create a placeholder (something like {{objList}}) while writing the text in the rich text editor.

Step 2: Create a microflow to save the object (in which you have the rich text editor attribute). In this flow you need to create a <ul><li>obj1.name</li><li>obj2.name</li></ul> in a string variable.

Step 3: Then the variable value in step 2, which will hold the HTML tags (<ul>...</ul>) should be replaced in the WYSIWYG variable with {{objList}} which we created in Step 1.

Step 4: Save the object.

Now when you open the variable in the rich text editor then it will be shown in the way you expected.

 

Hope this gives you some guidance for your question. If you need those steps let me know i can share the screen shots.

 

answered