<?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: Creating Popup Definition in .NET Maps SDK Questions</title>
    <link>https://community.esri.com/t5/net-maps-sdk-questions/creating-popup-definition/m-p/1556879#M13098</link>
    <description>&lt;P&gt;Added the LoadAsync, doesn't appear to make a difference, and EvaluatedElements to the GeoTapped Event.&lt;/P&gt;&lt;P&gt;I can see the 2 evaluated elements, text and field, both have the properties set as expected.&lt;/P&gt;&lt;P&gt;I can even see the correct value when looking at the FormattedValue...But still only the Titles and text field are displaying in the popup.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="evalelements.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/119155i26478BFF598C39F0/image-size/medium?v=v2&amp;amp;px=400" role="button" title="evalelements.png" alt="evalelements.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;//Added LoadAsync but nothing changes with/without
await _layer.LoadAsync();
var results = await PolkMapView.IdentifyLayerAsync(_layer, e.Position, 3, true);

//The FormattedValue is Correct when looking at the EvaluatedElement
var p = results.Popups.First();
await p.EvaluateExpressionsAsync();
var evalElements = p.EvaluatedElements;

popupViewer.Popup = p;
&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 08 Nov 2024 16:59:45 GMT</pubDate>
    <dc:creator>HS_PolkGIS</dc:creator>
    <dc:date>2024-11-08T16:59:45Z</dc:date>
    <item>
      <title>Creating Popup Definition</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/creating-popup-definition/m-p/1556371#M13086</link>
      <description>&lt;P&gt;I have a simple Identify Layer tool, that should be displaying information in a popupviewer, however only the Title is being displayed in the PopupViewer Control.&lt;/P&gt;&lt;P&gt;Simplified example is below after following the &lt;A href="https://developers.arcgis.com/net/wpf/sample-code/configure-clusters/" target="_self"&gt;Configure Clusters sample&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;I have tried creating a PopupDefinition in numerous ways but the only thing that displays in the popupviewer is the Title. The rest remains blank. I have to be missing something.&lt;/P&gt;&lt;P&gt;Xaml&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;&amp;lt;esri:PopupViewer x:Name="popupViewer" Margin="5" Width="375" MaxHeight="400"/&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Xaml.cs&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;        private async void PolkMapView_GeoViewTapped(object sender, Esri.ArcGISRuntime.UI.Controls.GeoViewInputEventArgs e)
        {
            //Hardcoded the Specific Layer
            FeatureLayer _layer = (FeatureLayer)_mapView.Map.OperationalLayers[27] ?? new FeatureLayer();
            var results = await _mapView.IdentifyLayerAsync(_layer, e.Position, 3, true);

            //Resulting Pop is NOT Null and HAS a PopupDefinition with Fields
            var p = results.Popups.First();

            if (p != null)
            {
                popupViewer.Popup = p;
                popupViewer.Visibility = System.Windows.Visibility.Visible;
                Console.WriteLine("Title " + p.Title.ToString() + " Field count: " + p.PopupDefinition.Fields.Count());
            } 
        }&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;PopupDefinition (Feature Layer is loaded from a .geodatabase file; Renderer and Label Definitions are created along with the PopupDefinition - only the popup is having issues)&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;parcelPolyLayer.IsPopupEnabled = true;
          
PopupDefinition newP = new PopupDefinition() { Title = "My Custom Title"};
PopupField newF = new PopupField() { Label = "Strap", FieldName = "JOIN_STRAP", IsEditable = true, IsVisible = true, StringFieldOption = PopupStringFieldOption.SingleLine };
newP.Fields.Add(newF);

parcelPolyLayer.PopupDefinition = newP;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Nov 2024 16:41:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/creating-popup-definition/m-p/1556371#M13086</guid>
      <dc:creator>HS_PolkGIS</dc:creator>
      <dc:date>2024-11-07T16:41:50Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Popup Definition</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/creating-popup-definition/m-p/1556429#M13087</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/347466"&gt;@HS_PolkGIS&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;I've managed to reproduce the issue you're seeing.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I'm going to check to see if there is another way to achieve this and get back to you.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Thanks for your question.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Nov 2024 18:12:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/creating-popup-definition/m-p/1556429#M13087</guid>
      <dc:creator>HamishDuff</dc:creator>
      <dc:date>2024-11-07T18:12:51Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Popup Definition</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/creating-popup-definition/m-p/1556493#M13088</link>
      <description>&lt;P&gt;Could you try setting height instead of the maxheight? I wonder if it is rendering, but just not sizing itself right.&lt;/P&gt;</description>
      <pubDate>Thu, 07 Nov 2024 20:09:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/creating-popup-definition/m-p/1556493#M13088</guid>
      <dc:creator>SomeGISGuy</dc:creator>
      <dc:date>2024-11-07T20:09:16Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Popup Definition</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/creating-popup-definition/m-p/1556497#M13089</link>
      <description>&lt;P&gt;That would have been a nice easy fix but unfortunately, still the same except a bigger popup.&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;&amp;lt;esri:PopupViewer x:Name="popupViewer" Margin="5" Width="375" Height="250" MaxHeight="400" /&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="popup.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/119083i5880781922F3010F/image-size/medium?v=v2&amp;amp;px=400" role="button" title="popup.png" alt="popup.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Nov 2024 20:18:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/creating-popup-definition/m-p/1556497#M13089</guid>
      <dc:creator>HS_PolkGIS</dc:creator>
      <dc:date>2024-11-07T20:18:39Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Popup Definition</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/creating-popup-definition/m-p/1556505#M13090</link>
      <description>&lt;P&gt;-&lt;/P&gt;</description>
      <pubDate>Thu, 07 Nov 2024 20:42:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/creating-popup-definition/m-p/1556505#M13090</guid>
      <dc:creator>SomeGISGuy</dc:creator>
      <dc:date>2024-11-07T20:42:15Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Popup Definition</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/creating-popup-definition/m-p/1556508#M13091</link>
      <description>&lt;P&gt;Thanks for confirming. On second look I realize you're adding to Fields and not Elements.&lt;BR /&gt;Try this instead:&lt;BR /&gt;&lt;BR /&gt;PopupDefinition newP = new PopupDefinition() { Title = "My Custom Title" };&lt;BR /&gt;PopupField newF = new PopupField() { Label = "Strap", FieldName = "JOIN_STRAP", IsEditable = true, IsVisible = true, StringFieldOption = PopupStringFieldOption.SingleLine };&lt;BR /&gt;newP.Elements.Add(new TextPopupElement("This is just some &amp;lt;b&amp;gt;generic text&amp;lt;/b&amp;gt; you can add"));&lt;BR /&gt;newP.Elements.Add(new FieldsPopupElement(new[] { newF }) { Title = "Attributes" });&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Nov 2024 20:42:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/creating-popup-definition/m-p/1556508#M13091</guid>
      <dc:creator>dotMorten_esri</dc:creator>
      <dc:date>2024-11-07T20:42:23Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Popup Definition</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/creating-popup-definition/m-p/1556563#M13092</link>
      <description>&lt;P&gt;Making a little progress.&lt;/P&gt;&lt;P&gt;All of the "static" text is appearing in the Popup but I am getting binding errors. All the original code is the same but I used the suggested TextPopupElements and the FieldsPopupElement lines... Adding a AttachmentsPopupElement with displaytype of list did not resolve anything.&lt;/P&gt;&lt;P&gt;The first error happens on app loading and the 2nd happens when the popup is set in the geotapped event. The error seems to be expecting an AttachmentsPopupElement and not the FieldsPopupElement.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="popupError.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/119095i892C19FAA78C6136/image-size/medium?v=v2&amp;amp;px=400" role="button" title="popupError.png" alt="popupError.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="popup2.png" style="width: 390px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/119096i3536964E927C8AFF/image-size/medium?v=v2&amp;amp;px=400" role="button" title="popup2.png" alt="popup2.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Nov 2024 21:37:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/creating-popup-definition/m-p/1556563#M13092</guid>
      <dc:creator>HS_PolkGIS</dc:creator>
      <dc:date>2024-11-07T21:37:48Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Popup Definition</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/creating-popup-definition/m-p/1556577#M13093</link>
      <description>&lt;P&gt;Is the&amp;nbsp;&lt;SPAN&gt;JOIN_STRAP field name correct? Did you make sure the feature you got is fully loaded and has that attribute in it?&lt;BR /&gt;&lt;BR /&gt;You can ignore the binding errors for now&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Nov 2024 21:45:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/creating-popup-definition/m-p/1556577#M13093</guid>
      <dc:creator>dotMorten_esri</dc:creator>
      <dc:date>2024-11-07T21:45:59Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Popup Definition</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/creating-popup-definition/m-p/1556773#M13095</link>
      <description>&lt;P&gt;The field name is correct, and I did try a few other fields, including surrounding with [brackets]. I added screenshots while stepping through in case you can see anything.&lt;/P&gt;&lt;P&gt;Fields in the Table and Attributes on the Layer. Then the FieldPopupElement which has the single field item - newF.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="fields.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/119138i45D642A3930C0C58/image-size/medium?v=v2&amp;amp;px=400" role="button" title="fields.png" alt="fields.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="elemnt.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/119139i6CAE285E87B830F2/image-size/medium?v=v2&amp;amp;px=400" role="button" title="elemnt.png" alt="elemnt.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Also included how the Table and FeatureLayer are loaded and the exact code used to create the definition.&lt;/P&gt;&lt;P&gt;Thank you for the help on this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;Geodatabase? parcelsDb = LoadGeodatabase(localPath);
parcelsTable = parcelsDb.GetGeodatabaseFeatureTable("SVA_MGIS");
var parcelPolyLayer = new FeatureLayer(parcelsTable);
parcelPolyLayer.LoadAsync().Wait();

parcelPolyLayer.IsPopupEnabled = true;
PopupDefinition newP = new PopupDefinition() { Title = "My Custom Title" };
PopupField newF = new PopupField() { Label = "Strap", FieldName = "JOIN_STRAP", IsEditable = true, IsVisible = true, StringFieldOption = PopupStringFieldOption.SingleLine };
newP.Elements.Add(new TextPopupElement("This is just some &amp;lt;b&amp;gt;generic text&amp;lt;/b&amp;gt; you can add"));
newP.Elements.Add(new FieldsPopupElement(new[] { newF }) { Title = "Attributes" });
parcelPolyLayer.PopupDefinition = newP;
//Layer is then added to Map.OperationalLayers&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 08 Nov 2024 13:23:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/creating-popup-definition/m-p/1556773#M13095</guid>
      <dc:creator>HS_PolkGIS</dc:creator>
      <dc:date>2024-11-08T13:23:48Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Popup Definition</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/creating-popup-definition/m-p/1556841#M13096</link>
      <description>&lt;P&gt;&amp;gt;&amp;nbsp;&lt;SPAN&gt;Also included how the Table and FeatureLayer are loaded&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;I was referring to the feature itself. Try adding (feature as ILoadable)?.LoadAsync(); before assigning it to the popup. Also assert that the feature itself does have that attribute populated.&lt;BR /&gt;Lastly set a breakpoint on the Popup that is returned from identify, call "await Popup.EvaluateExpressionsAsync()" and inspect "EvaluatedElements" and verify the fields are present&lt;/P&gt;</description>
      <pubDate>Fri, 08 Nov 2024 16:15:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/creating-popup-definition/m-p/1556841#M13096</guid>
      <dc:creator>dotMorten_esri</dc:creator>
      <dc:date>2024-11-08T16:15:32Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Popup Definition</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/creating-popup-definition/m-p/1556879#M13098</link>
      <description>&lt;P&gt;Added the LoadAsync, doesn't appear to make a difference, and EvaluatedElements to the GeoTapped Event.&lt;/P&gt;&lt;P&gt;I can see the 2 evaluated elements, text and field, both have the properties set as expected.&lt;/P&gt;&lt;P&gt;I can even see the correct value when looking at the FormattedValue...But still only the Titles and text field are displaying in the popup.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="evalelements.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/119155i26478BFF598C39F0/image-size/medium?v=v2&amp;amp;px=400" role="button" title="evalelements.png" alt="evalelements.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;//Added LoadAsync but nothing changes with/without
await _layer.LoadAsync();
var results = await PolkMapView.IdentifyLayerAsync(_layer, e.Position, 3, true);

//The FormattedValue is Correct when looking at the EvaluatedElement
var p = results.Popups.First();
await p.EvaluateExpressionsAsync();
var evalElements = p.EvaluatedElements;

popupViewer.Popup = p;
&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 08 Nov 2024 16:59:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/creating-popup-definition/m-p/1556879#M13098</guid>
      <dc:creator>HS_PolkGIS</dc:creator>
      <dc:date>2024-11-08T16:59:45Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Popup Definition</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/creating-popup-definition/m-p/1556901#M13103</link>
      <description>&lt;P&gt;Hmm that all looks good. I haven't been able to reproduce that behavior. Is there any chance you could share a small sample that reproduces the issue using some public data?&lt;/P&gt;</description>
      <pubDate>Fri, 08 Nov 2024 17:43:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/creating-popup-definition/m-p/1556901#M13103</guid>
      <dc:creator>dotMorten_esri</dc:creator>
      <dc:date>2024-11-08T17:43:03Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Popup Definition</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/creating-popup-definition/m-p/1557297#M13106</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/347466"&gt;@HS_PolkGIS&lt;/a&gt;&amp;nbsp;my problem was addressed by adding the line:&lt;/P&gt;
&lt;LI-CODE lang="csharp"&gt;newP.Elements.Add(new FieldsPopupElement(new[] { newF }) { Title = "Attributes" });&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;BR /&gt;Are you still having issues?&lt;/P&gt;</description>
      <pubDate>Mon, 11 Nov 2024 15:27:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/creating-popup-definition/m-p/1557297#M13106</guid>
      <dc:creator>HamishDuff</dc:creator>
      <dc:date>2024-11-11T15:27:42Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Popup Definition</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/creating-popup-definition/m-p/1557472#M13107</link>
      <description>&lt;P&gt;I am looking into getting a public set to provide here.&lt;/P&gt;&lt;P&gt;If it helps, this project is for a conversion from old ArcReader map that was using .gdb files to a map package using .geodatabase file as the source.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Our use of the popup is limited to one feature, so we might simply make a custom display and move on for now.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 12 Nov 2024 13:14:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/creating-popup-definition/m-p/1557472#M13107</guid>
      <dc:creator>HS_PolkGIS</dc:creator>
      <dc:date>2024-11-12T13:14:45Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Popup Definition</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/creating-popup-definition/m-p/1557476#M13108</link>
      <description>&lt;P&gt;Yes, after adding that line the popup still only displays the Titles and static Text Field elements. The popup definition does have the correct evaluated field values which can be seen stepping through code.&lt;/P&gt;</description>
      <pubDate>Tue, 12 Nov 2024 13:32:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/creating-popup-definition/m-p/1557476#M13108</guid>
      <dc:creator>HS_PolkGIS</dc:creator>
      <dc:date>2024-11-12T13:32:13Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Popup Definition</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/creating-popup-definition/m-p/1557607#M13110</link>
      <description>&lt;P&gt;I see in another response you've mentioned looking into providing a public set of data for us to try to reproduce your issue with.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;If you are able to do that it would be helpful as I'm unable to reproduce the issue here.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 12 Nov 2024 16:35:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/creating-popup-definition/m-p/1557607#M13110</guid>
      <dc:creator>HamishDuff</dc:creator>
      <dc:date>2024-11-12T16:35:47Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Popup Definition</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/creating-popup-definition/m-p/1635222#M13608</link>
      <description>&lt;P&gt;Wondering if there was a resolution to this issue.&amp;nbsp; I am running into the same problem.&amp;nbsp; Popup is only displaying the value of the first field of type text in the attribute table.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Stepping through the code in Visual Studio indicates all expected field names and values are present on the popup's EvaluatedElements property.&lt;/P&gt;</description>
      <pubDate>Tue, 22 Jul 2025 22:00:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/creating-popup-definition/m-p/1635222#M13608</guid>
      <dc:creator>StreeterRobert</dc:creator>
      <dc:date>2025-07-22T22:00:19Z</dc:date>
    </item>
    <item>
      <title>Re: Creating Popup Definition</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/creating-popup-definition/m-p/1637736#M13617</link>
      <description>&lt;P&gt;Since we haven't been able to reproduce, there hasn't been any progress. If you have a reproducer you can share, I'll be more than happy to take a look.&lt;/P&gt;</description>
      <pubDate>Wed, 30 Jul 2025 17:51:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/creating-popup-definition/m-p/1637736#M13617</guid>
      <dc:creator>dotMorten_esri</dc:creator>
      <dc:date>2025-07-30T17:51:31Z</dc:date>
    </item>
  </channel>
</rss>

