function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Dave ChisholmDave Chisholm 

JSON Connector add string to image source

Hi experienced developers, I am using the JSON connector to display some content in Community Portal.  My JSON includes a field with a relative path to an image file.  I was thinking I could add the absolute path as a string in the 'Image Source' field of the component dialog box.

@imageURL would return the relative link from my JSON.   eg. '\content\pic.jpg'
How do I include a string along with the JSON expression?
Here is what I have tried:
1) https://domain.com/@imageURL
2) @'https://domain.com/'@imageURL
3) @'https://domain.com/'imageURL
4) https://domain.com/{@imageURL}

Any tips appreciated,