Bug-ID-Nummer |
BUG-000151863 |
Eingereicht | August 25, 2022 |
Zuletzt geändert | December 19, 2024 |
Gilt für | ArcGIS Survey123 |
Gefunden in Version | 3.15 |
Betriebssystem | N/A |
Betriebssystemversion | N/A |
Status | Under Consideration
Das Problem wurde durch das Entwicklungsteam überprüft. Es wurde nicht in einem Release-Plan priorisiert, jedoch erfolgt eine Überwachung hinsichtlich der Gesamtauswirkungen. Faktoren, die einen Einfluss auf die Priorisierung haben, sind u. a. die Anzahl der betroffenen Benutzer bzw. die Anzahl der Funktionsanforderungen durch Benutzer, die geschäftlichen Auswirkungen und ein etwaiger Workaround. Sollte ein Bug zu geschäftlichen Beeinträchtigungen für Sie führen, finden Sie weitere Informationen unter "How To: Eskalieren eines Fehlers" (https://support.esri.com/en/technical-article/000024129).
|
Workaround
There are two workarounds for this issue:
- Use a different syntax to explicitly set the source to reference where the image is hosted. This workaround only works in the web app as the images do not display in the field app. For example:
- Replace <img src=${QUESTION_NAME}> with concat("<img src=https://www.arcgis.com/sharing/rest/content/items/SURVEY_FORM_ID/info/media/",${QUESTION_NAME},"?token=",pulldata("@property","token"),">")
- Replace <img src=image_name.png> with concat("<img src=https://www.arcgis.com/sharing/rest/content/items/SURVEY_FORM_ID/info/media/","image_name.png","?token=",pulldata("@property","token"),">")
- This workaround applies to the cases where different images must be displayed based on the answer to a previous question. Use the following alternative workflow:
- Add each image in a separate note question under the media::image column instead of the label. For example, 'Image_Name.png'.
- Add a relevant expression for each question to display based on the selected choice in the previous question. For example, ${Question_Name}=’Option1’.

Schritte zur Reproduzierung