I have a MultiSelect input, I want to display all the values in a html block; delimited by new line/line break.
I can not get the html to render the line break, just prints it as plain text. How can I delimit my multivalue input by html line break and display the token in a html block?
Here is my test dashboard:
<form>
<label>Multiselect delimit by Line Break</label>
<fieldset submitButton="false" autoRun="true">
<input type="multiselect" token="app_token" searchWhenChanged="true">
<label>App</label>
<choice value="Value1">Name1</choice>
<choice value="Value2">Name2</choice>
<choice value="Value3">Name3</choice>
<delimiter><br/></br></delimiter>
</input>
</fieldset>
<row>
<panel>
<html>
<p>Display test 1: $app_token$</p>
<p>Display test 2: $app_token|h$</p>
<p>Display test 3: $app_token|n$</p>
<p>Desired output from app_token:</p>
<p>Name1<br></br>Name2<br/></br>Name3</p>
</html>
</panel>
</row>
</form>
... View more