<?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: Trouble with ArcGIS Feature Table Displaying Over Calcite Popover (Z-index) in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/trouble-with-arcgis-feature-table-displaying-over/m-p/1689960#M88288</link>
    <description>&lt;P&gt;This is exactly what I was going for.&amp;nbsp; Thank you very much!&lt;/P&gt;</description>
    <pubDate>Wed, 11 Mar 2026 14:54:46 GMT</pubDate>
    <dc:creator>JasonBartling1</dc:creator>
    <dc:date>2026-03-11T14:54:46Z</dc:date>
    <item>
      <title>Trouble with ArcGIS Feature Table Displaying Over Calcite Popover (Z-index)</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/trouble-with-arcgis-feature-table-displaying-over/m-p/1689502#M88272</link>
      <description>&lt;P&gt;I am using the 4.33 maps SDK and calcite 3.2.1 and I would like to have the calcite popover windows in my application always display above any other elements.&amp;nbsp; Right now I have an arcgis feature table that displays above the calcite popovers.&amp;nbsp; I have tried adjusting the z-index in my css for these elements, but no values seem to the achieve the desired effect.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is a codepen that shows the issue:&amp;nbsp;&amp;nbsp;&lt;A href="https://codepen.io/windowslover/pen/ByLLmrP" target="_blank" rel="noopener"&gt;https://codepen.io/windowslover/pen/ByLLmrP&lt;/A&gt;&lt;/P&gt;&lt;P&gt;If I set the z-index to -1 in my #tableDiv css rule the feature table no longer appears above the popovers but then it displays behind the arcgis-coordinate-coversion widget and bottom application attribution, which is not desired.&lt;/P&gt;&lt;P&gt;Is there a css variable or some other setting that I can use to get the desired effect where the arcgis-feature-table is right below calcite popovers in z-index arrangement?&lt;/P&gt;&lt;P&gt;Edit:&amp;nbsp; I forgot to mention you can drag/resize/expand the feature table with the button and edge of the feature table.&lt;/P&gt;</description>
      <pubDate>Mon, 09 Mar 2026 20:44:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/trouble-with-arcgis-feature-table-displaying-over/m-p/1689502#M88272</guid>
      <dc:creator>JasonBartling1</dc:creator>
      <dc:date>2026-03-09T20:44:27Z</dc:date>
    </item>
    <item>
      <title>Re: Trouble with ArcGIS Feature Table Displaying Over Calcite Popover (Z-index)</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/trouble-with-arcgis-feature-table-displaying-over/m-p/1689538#M88273</link>
      <description>&lt;P&gt;The code pen you provided didn't have a number in the z-index for the #table-placement.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;#table-placement {
  z-index: 1;
}

.widget-stack {
  position: relative;
  z-index: 10;
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 10 Mar 2026 13:22:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/trouble-with-arcgis-feature-table-displaying-over/m-p/1689538#M88273</guid>
      <dc:creator>MatthewDriscoll</dc:creator>
      <dc:date>2026-03-10T13:22:47Z</dc:date>
    </item>
    <item>
      <title>Re: Trouble with ArcGIS Feature Table Displaying Over Calcite Popover (Z-index)</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/trouble-with-arcgis-feature-table-displaying-over/m-p/1689648#M88276</link>
      <description>&lt;P&gt;Ah geez.&amp;nbsp; I can't believe I somehow missed my .widget-stack class z-index. What you provided is very close to what I am going for, except I want the widget icons themselves to be covered with the open popovers visible.&amp;nbsp; I think I am going to need to move the calcite-popovers out of my widget-stack div to accomplish this.&amp;nbsp; Thank you so much for getting me on the right track though!&lt;/P&gt;</description>
      <pubDate>Tue, 10 Mar 2026 13:51:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/trouble-with-arcgis-feature-table-displaying-over/m-p/1689648#M88276</guid>
      <dc:creator>JasonBartling1</dc:creator>
      <dc:date>2026-03-10T13:51:45Z</dc:date>
    </item>
    <item>
      <title>Re: Trouble with ArcGIS Feature Table Displaying Over Calcite Popover (Z-index)</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/trouble-with-arcgis-feature-table-displaying-over/m-p/1689658#M88278</link>
      <description>&lt;P&gt;Change the widget-stack z-index to auto, this basically isolates it from it's children.&amp;nbsp; Then you can independently move the popover children.&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;     .widget-stack {
        position: relative;
        top: 50px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        z-index: auto;
      }

      calcite-popover {
        position: relative;
        z-index: 5; 
      }
     
      #table-placement {
        position: absolute;
        z-index: 1;
      }&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 10 Mar 2026 14:36:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/trouble-with-arcgis-feature-table-displaying-over/m-p/1689658#M88278</guid>
      <dc:creator>MatthewDriscoll</dc:creator>
      <dc:date>2026-03-10T14:36:43Z</dc:date>
    </item>
    <item>
      <title>Re: Trouble with ArcGIS Feature Table Displaying Over Calcite Popover (Z-index)</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/trouble-with-arcgis-feature-table-displaying-over/m-p/1689960#M88288</link>
      <description>&lt;P&gt;This is exactly what I was going for.&amp;nbsp; Thank you very much!&lt;/P&gt;</description>
      <pubDate>Wed, 11 Mar 2026 14:54:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/trouble-with-arcgis-feature-table-displaying-over/m-p/1689960#M88288</guid>
      <dc:creator>JasonBartling1</dc:creator>
      <dc:date>2026-03-11T14:54:46Z</dc:date>
    </item>
  </channel>
</rss>

