Brad:
How can I get the html code in my model element to be evaluated? html_calc does not seem to do it. I want to display a list from FM in html in the model. But if I substitute the returns with
, ‘
’ actually displays.
dansmith65:
Maybe this? https://v2.vuejs.org/v2/guide/syntax.html#Raw-HTML
Hassan Mukhtar:
You can evaluate it in the HTML snipped without using a calc, you can add javascript like {{model.List}} between the {{}} you can apply javascript
Brad:
{{model.report}}
Brad:
Like this?
dansmith65:
Probably more like:
<span v-html="model.report"></span>
Brad:
Perfect! Thank you!