Display GUID in Popupinfo

691
2
05-16-2017 06:55 AM
ozcandurak
New Contributor III

Hi

I have an issue with displaying GUID type field in the popup. Its getting ignored.

let gdbFeature = Feature as? AGSGDBFeature 
var popups = [AGSPopup]()     
 
//At this point i can see all fields including GUID field type
print(gdbFeature)
 
//After adding into AGSPopupInfo GUID type is getting ignored.
let popupInfo = AGSPopupInfo(forGDBFeatureTable: gdbFeature.table)
var items = popupInfo.fieldInfos as! [AGSPopupFieldInfo]

for fieldInfo: AGSPopupFieldInfo in fieldInfos {
            print(fieldInfo.fieldName)
}

Is there any way to add GUID type field or append those field manually.

Thanks in advance.

 

0 Kudos
2 Replies
MikeOnzay
Occasional Contributor III

I have a similar question. I want to pass a GlobalID as a parameter to a survey123 form. The custom URL does not show the value.

0 Kudos
MikeOnzay
Occasional Contributor III

After some trial and error of adding a point in a web map and not seeing the GlobalID value I realized I had to pan the map before I saw it in the custom URL I created. I discovered this by refreshing the table in ArcCatalog after I added the point. I could see that the GlobalID was being created.

0 Kudos