I am trying to add a URL to a pop-up using the Arcade element, but the URL contains values inside { } and Arcade is removing that entire portion from the returned result. I can't find any helpful escape characters to negate this.
This is an example of the URL:
Solved! Go to Solution.
Try using the escape character "}" for "{" and "}" for "}". This syntax seems to work
var output = `https://clientURL/?search={[Property Card]:[Sec_Block_Lot] = "77-3-34"}&openlfoneresult=true`
return {
type : 'text',
text : output
}KenBuja_0-1762298668535.png
Try using the escape character "}" for "{" and "}" for "}". This syntax seems to work
var output = `https://clientURL/?search={[Property Card]:[Sec_Block_Lot] = "77-3-34"}&openlfoneresult=true`
return {
type : 'text',
text : output
}KenBuja_0-1762298668535.png
This worked! Thank you so much!
Glad to help. Don't forget to click the "Accept as Solution" button to help others searching for this answer.