Good morning,
Is there a way to open an Hyperlink field? May be using Experience Builder?
All documents related to a project are stored in the corresponding folder: server/storage folder/project number.
For example, all documents related to project 100 will be stored in folder: \\server\project\100 then in the FC for project 100 there is a field called DocPath with the value: file:///\\<server>\<project>\<project number>
This is a hyperlink field, so it can be clicked in ArcGIS Pro and it opens the specific folder. In a WebMap it does not work.
How can I do the same thing in Agis Portal/ AGOL?
Thanks
Unfortunately, ArcGIS Online does not support UNC paths as hyperlinks. See the alternative solutions in the below link:
It's a browser thing. It seems modern browsers prevent this intentionally for security. You could try some browser extensions to allow it (at your own risk).
Is there a way to call a geoprocessing Python tool from the Popup Window that will open File Explorer. Folder passed as parameter.
import os
path = "\\\\server\\folder\\project"
path = os.path.realpath(path)
os.startfile(path)
Yes, if you are able to host the Python script as a geoprocessing service.