Hello
I am trying to create a POC and have list of records from a JSON query on the left of a page. Then have the Survey123 Form on the right populated with the appropriate data from that Record they selected on the left.
Right now I am just trying to get the form to show up in the right with a specific record ID and cant seem to make this work...
Do I need to import some JS module or something? I figure if I can get this working I can figure out the rest...
<html>
<head></head>
<body>
<div style="width: 100%;">
<div style="width: 50%; height: 80%; float: left; background: white;border-color:black">
Left Div
</div>
<div style="margin-left: 50%; height: 80%; background: white;border-color:black">
<iframe name="survey123webform" width="300" height="400" frameborder="0" marginheight="0" marginwidth="0" title="My Survey"
src="//survey123.arcgis.com/share/1xxx14a98xxxc878005xxx6&action=edit&folder=inbox&update=true&q:where=OBJECTID=10343&"></iframe>
</div>
</div>
</body>
</html>
Solved! Go to Solution.
Think I got it with this..
My question now is can I back in credentials so I am not asked to login each time?
<iframe name="survey123webform" width=100% height=100% frameborder="0" marginheight="0" marginwidth="0" title="My Survey"
src="https://survey123.arcgis.com/share/xxxxxxxxx0545e6?portalUrl=https://gggg.fdfd.virginia.com/portal&mode=edit&globalId={5FA1DFAA-17C6-4052-89AD-4737B916157F}">
</iframe>
Note: My forms are in our OnPrem Portal So am thinking that I would have to change the URL? Just not sure the correct syntax
Think I got it with this..
My question now is can I back in credentials so I am not asked to login each time?
<iframe name="survey123webform" width=100% height=100% frameborder="0" marginheight="0" marginwidth="0" title="My Survey"
src="https://survey123.arcgis.com/share/xxxxxxxxx0545e6?portalUrl=https://gggg.fdfd.virginia.com/portal&mode=edit&globalId={5FA1DFAA-17C6-4052-89AD-4737B916157F}">
</iframe>