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>