Hi,
i am attempting to access records in the Survey123 field app from the WebEditor in Windows 11 via a link in the popup. The link to Survey123 is created using the following expression:
var surveyLink = "arcgis-survey123://?itemID="ID of my survey"&";
var params = {
action: "edit",
folder: "inbox",
update: "true",
};
return {
type : 'text',
text : "<a href=" + surveyLink + UrlEncode(params) + ">Bestehenden Survey aufrufen!</a>"
};
The resultung Link looks like this:
arcgis-survey123://?itemID="ID of my survey"&action=edit&folder=inbox&update=true
the link should open the field app on my tablet (Windows 11) but instead it only creates a new empty tab in my browser (Edge). The field app is installed and the survey is already downloaded to it.
Anyone here who can tell me what I'm doing wrong?