I am using the HTML functionality of the TEXT component in V2 attempting to dynamically load an IFrame.
I can’t seem to get the syntax right. I am able to get the IFrame URL to work when I hard code the parameter. And I am able to see Merge Variables in the HTML when they are not in the IFrame URL, but syntax wise I think I am doing something wrong in the URL.
The following works when hardcoded
https://instance--lightnings--skuid.cs37.visual.force.com/apex/skuid__ui?page=OppFiles2Zip&id=0060B00000f3UUQQA2" style="border:none;" width="98%">
but then I try to use the merge field inside the URL it doesn’t work. If I place the merge field somewhere else outside of the iFrame tag I can see that its pulling the right value. For some reason the substitution is not happening.
https://instance--lightnings--skuid.cs37.visual.force.com/apex/skuid__ui?page=OppFiles2Zip&id={{Id}}" style="border:none;" width="98%">
Is there special syntax that is needed within the src attribute of the HTML tag in the V2 Text component for it to recognize it needs to substitute the merge variable?