I am unable to open the survey via other applications
Why is this if, it public and in my name as the owner?
I am trying create a pop up on a public facing map:
<div style="text-align:center;">
<span style="font-size:large;">Street Name: {NAME}</span>
</div>
<div style="text-align:center;">
</div>
<div style="text-align:center;">
<a target="_blank" rel="noopener noreferrer" href="https://survey123.arcgis.com/share/6ba82fca211c4484af4c9b0faf8f9bc2? portalUrl=https://gis.memphistn.gov/portal&field:Parent_GUID_text={GlobalID}&field:From_Street={FROMST...}">ADOPT THIS STREET</a>
</div>
Survey that works:
Solved! Go to Solution.
I notice the URL isn't going through an encoder. You probably need to use Concatenate and UrlEncode to get it to work. I've attached an example of how I use those functions to create 3 different properly encoded links in a pop up to create a new survey, update a draft, and edit an existing survey in Survey123.
Here's a link to the arcade function reference, just search for UrlEncode and Concatenate to get more info on their function. Just note that in my arcade script below there's a note about q:where needing to be formatted a certain way because the encoder doesn't output the properly formatted parameter. You may or may not experience that issue with your field: parameters. Just a heads up.
I notice the URL isn't going through an encoder. You probably need to use Concatenate and UrlEncode to get it to work. I've attached an example of how I use those functions to create 3 different properly encoded links in a pop up to create a new survey, update a draft, and edit an existing survey in Survey123.
Here's a link to the arcade function reference, just search for UrlEncode and Concatenate to get more info on their function. Just note that in my arcade script below there's a note about q:where needing to be formatted a certain way because the encoder doesn't output the properly formatted parameter. You may or may not experience that issue with your field: parameters. Just a heads up.
Thank you so much! I got it to work by removing the ? question mark and readding it again! I will definiely save this information!