<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Display GUID in Popupinfo in ArcGIS Runtime SDK for iOS Questions</title>
    <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/display-guid-in-popupinfo/m-p/166290#M1531</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;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.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 19 Jun 2017 13:42:39 GMT</pubDate>
    <dc:creator>MikeOnzay</dc:creator>
    <dc:date>2017-06-19T13:42:39Z</dc:date>
    <item>
      <title>Display GUID in Popupinfo</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/display-guid-in-popupinfo/m-p/166288#M1529</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P class=""&gt;&lt;STRONG&gt;&lt;SPAN class=""&gt;Hi&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;STRONG&gt;&lt;SPAN class=""&gt;I have an issue with displaying GUID type field in the popup. Its getting ignored.&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;STRONG&gt;&lt;SPAN class=""&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;let gdbFeature &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; Feature as&lt;SPAN class="operator token"&gt;?&lt;/SPAN&gt; AGSGDBFeature 
var popups &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;AGSPopup&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 
 
&lt;SPAN class="comment token"&gt;//At this point i can see all fields including GUID field type&lt;/SPAN&gt;
&lt;SPAN class="token function"&gt;print&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;gdbFeature&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
 
&lt;SPAN class="comment token"&gt;//After adding into AGSPopupInfo GUID type is getting ignored.&lt;/SPAN&gt;
let popupInfo &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="token function"&gt;AGSPopupInfo&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;forGDBFeatureTable&lt;SPAN class="operator token"&gt;:&lt;/SPAN&gt; gdbFeature&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;table&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
var items &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; popupInfo&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;fieldInfos as&lt;SPAN class="operator token"&gt;!&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;AGSPopupFieldInfo&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;

&lt;SPAN class="keyword token"&gt;for&lt;/SPAN&gt; fieldInfo&lt;SPAN class="operator token"&gt;:&lt;/SPAN&gt; AGSPopupFieldInfo in fieldInfos &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="token function"&gt;print&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;fieldInfo&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;fieldName&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;STRONG&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;Is there any way to add &lt;SPAN style="color: #000000;"&gt;GUID type&lt;/SPAN&gt; field or append those field manually.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;STRONG&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;STRONG&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;Thanks in advance.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P class=""&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 08:40:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/display-guid-in-popupinfo/m-p/166288#M1529</guid>
      <dc:creator>ozcandurak</dc:creator>
      <dc:date>2021-12-11T08:40:28Z</dc:date>
    </item>
    <item>
      <title>Re: Display GUID in Popupinfo</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/display-guid-in-popupinfo/m-p/166289#M1530</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;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&amp;nbsp;value. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 17 Jun 2017 15:39:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/display-guid-in-popupinfo/m-p/166289#M1530</guid>
      <dc:creator>MikeOnzay</dc:creator>
      <dc:date>2017-06-17T15:39:31Z</dc:date>
    </item>
    <item>
      <title>Re: Display GUID in Popupinfo</title>
      <link>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/display-guid-in-popupinfo/m-p/166290#M1531</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;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.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Jun 2017 13:42:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-runtime-sdk-for-ios-questions/display-guid-in-popupinfo/m-p/166290#M1531</guid>
      <dc:creator>MikeOnzay</dc:creator>
      <dc:date>2017-06-19T13:42:39Z</dc:date>
    </item>
  </channel>
</rss>

