Hi
I have an issue with displaying GUID type field in the popup. Its getting ignored.
let gdbFeature <SPAN class="operator token">=</SPAN> Feature as<SPAN class="operator token">?</SPAN> AGSGDBFeature
var popups <SPAN class="operator token">=</SPAN> <SPAN class="punctuation token">[</SPAN>AGSPopup<SPAN class="punctuation token">]</SPAN><SPAN class="punctuation token">(</SPAN><SPAN class="punctuation token">)</SPAN>
<SPAN class="comment token">//At this point i can see all fields including GUID field type</SPAN>
<SPAN class="token function">print</SPAN><SPAN class="punctuation token">(</SPAN>gdbFeature<SPAN class="punctuation token">)</SPAN>
<SPAN class="comment token">//After adding into AGSPopupInfo GUID type is getting ignored.</SPAN>
let popupInfo <SPAN class="operator token">=</SPAN> <SPAN class="token function">AGSPopupInfo</SPAN><SPAN class="punctuation token">(</SPAN>forGDBFeatureTable<SPAN class="operator token">:</SPAN> gdbFeature<SPAN class="punctuation token">.</SPAN>table<SPAN class="punctuation token">)</SPAN>
var items <SPAN class="operator token">=</SPAN> popupInfo<SPAN class="punctuation token">.</SPAN>fieldInfos as<SPAN class="operator token">!</SPAN> <SPAN class="punctuation token">[</SPAN>AGSPopupFieldInfo<SPAN class="punctuation token">]</SPAN>
<SPAN class="keyword token">for</SPAN> fieldInfo<SPAN class="operator token">:</SPAN> AGSPopupFieldInfo in fieldInfos <SPAN class="punctuation token">{</SPAN>
<SPAN class="token function">print</SPAN><SPAN class="punctuation token">(</SPAN>fieldInfo<SPAN class="punctuation token">.</SPAN>fieldName<SPAN class="punctuation token">)</SPAN>
<SPAN class="punctuation token">}</SPAN><SPAN class="line-numbers-rows"><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN><SPAN></SPAN></SPAN>
Is there any way to add GUID type field or append those field manually.
Thanks in advance.