Display list of values one below the other

Can anyone help me to display a list of values one below the other without any , or ; at the end in an expression rule? I have tried using char(10), char(13), concat function with <br> but none works.

  Discussion posts and replies are publicly visible

Parents
  • Please share the details of where do you want to display the list values.

    If it is in a paragraph field then the below code works:

    a!paragraphField(
    value : if(isnull(ri!input_text),ri!a,joinarray(ri!input_text,char(10))),
    readOnly: false(),
    saveInto : a!save(ri!input_text,if(isnull(save!value),save!value,split(save!value,";")))
    ),

    The variable input_text is of multiple type text rule input. When the data is entered in the paragraph field separated by ';' delimiter then the data in the paragraph field gets displayed line by line.

  • Thanks for your response. 

    I wanted to display a list of values one below the other in an email using expression rule and it worked using the below code.

    striphtml(a!forEach(items: ri!input,

    expression: concat(fv!item,"<br>"))).

Reply Children