Hi,
I'm trying to optimise the layout of a report with EM function. I'm looking towards to add line returns to the report.
1) Is their a way to add a line return <br> in a
LIST function or the data can only be separated by a coma?
I use this fonction {list(that.EngagementInteractiv .shown,EngagementInteractiv _other.NAOK)}
2) In a
IF function I actually use a join function to display an string (SQ002 example). I would like to add each data in a html list. I can't manage to use htmlentities or html_entity_decode to use an <li> or an <br>
Code:
<ul>
{if(Local_SQ001.NAOK == 'U',join(html_entity_decode('<li>'),"Le mobilier où seront assis les participants peut être facilement déplacé.",html_entity_decode('</li>')), "")}{if(Local_SQ002.NAOK == 'U',join("Le local est équipé d'outils de diffusion vidéo (exemple: projecteur ou téléviseur) qui permettront aux gens de bien voir la présentation."), "")}
</ul>
Thans for your precious help!