Skip to main content

How to use <a href=" https://URL.com ">Link to Doc</a>  in Task Description FX ?  Do I need to use an escape character for the “ “ in the HTML element? 

 

Example FX

 "<b> General Request Task for Ticket Reference:</b>  "

+ $new.parentEvent.formattedReference

+ " - Please refer to this Parent Record for additional information and special fields <br> <b> When finished use the Action: Resolved to progress the workflow</b>  <br> Follow the the below document <br> <br> <a href=" https://URL.com ">Link to Doc</a>  <br>  <b>Task Description:</b> <br>"

+ $new.parentEvent.richRemarks.content 

 

This is throwing an error, but works if I remove  <a href=" https://URL.com ">Link to Doc</a>

 

Any Idea’s? 

I believe quotes are not supported in expressions. So you need to use them differently. 
You will need to replace the “ with &quot;

So your expression for task description should be as follows : 

 "<b> General Request Task for Ticket Reference:</b> " + $new.parentEvent.formattedReference + " - Please refer to this Parent Record for additional information and special fields <br> <b> When finished use the Action: Resolved to progress the workflow</b> <br> Follow the the below document <br> <br> <a href=&quot; https://URL.com &quot;>Link to Doc</a> <br> <b>Task Description:</b> <br>" + $new.parentEvent.richRemarks.content 

 

Please refer the following wiki document for more information : https://wiki.axiossystems.com/assyst11-8Wiki/index.php/Extended_Keyword_Notation#Escaping_Quotes_using_HTML_Syntax


Reply