<?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: Popover not showing up in Calcite Design System Questions</title>
    <link>https://community.esri.com/t5/calcite-design-system-questions/popover-not-showing-up/m-p/1179942#M148</link>
    <description>&lt;P&gt;Thank you for your feedback on updating our documentation to reflect the deprecation, &lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/14521"&gt;@LefterisKoumis&lt;/a&gt;&amp;nbsp;.&lt;/P&gt;&lt;P&gt;As a result of your comment this week we added some notes on the deprecation to the &lt;A href="https://developers.arcgis.com/calcite-design-system/components/popover/" target="_blank" rel="noopener"&gt;Popover page&lt;/A&gt;.&lt;/P&gt;</description>
    <pubDate>Fri, 03 Jun 2022 21:38:27 GMT</pubDate>
    <dc:creator>KittyHurley</dc:creator>
    <dc:date>2022-06-03T21:38:27Z</dc:date>
    <item>
      <title>Popover not showing up</title>
      <link>https://community.esri.com/t5/calcite-design-system-questions/popover-not-showing-up/m-p/1177811#M140</link>
      <description>&lt;P&gt;THis simple script works in codepen:&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt; &amp;lt;calcite-popover label="Example label" reference-element="popover-button"&amp;gt;
                  &amp;lt;p style="padding:0 10px;display:flex;flex-direction:row"&amp;gt;
                    Popover content here
                  &amp;lt;/p&amp;gt;
                &amp;lt;/calcite-popover&amp;gt;
                &amp;lt;calcite-link id="popover-button"&amp;gt;Activate Popover&amp;lt;/calcite-link&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But when I use the same script inside a tab, the popover doesn't appear.&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;&amp;lt;!DOCTYPE html&amp;gt;
&amp;lt;html lang="en"&amp;gt;

&amp;lt;head&amp;gt;
  &amp;lt;meta charset="UTF-8"&amp;gt;
  &amp;lt;title&amp;gt;&amp;lt;/title&amp;gt;Test&amp;lt;/title&amp;gt;
  &amp;lt;style&amp;gt;
    html,
    body,
    #viewDiv {
      padding: 0;
      margin: 0;
      height: 100%;
      width: 100%;
    }
  &amp;lt;/style&amp;gt;

  &amp;lt;link rel="stylesheet" href="https://js.arcgis.com/4.23/esri/themes/light/main.css" /&amp;gt;

  &amp;lt;script type="module"&amp;gt;
    import WebMap from "https://js.arcgis.com/next/@arcgis/core/WebMap.js";
    import MapView from "https://js.arcgis.com/next/@arcgis/core/views/MapView.js";

    var map = new WebMap({
      basemap: "streets-vector",
      portalItem: { // autocasts as new PortalItem()
        id: "f2e9b762544945f390ca4ac3671cfa72"
      }
    })


    const view = new MapView({
      map,
      container: "viewDiv",
      center: [-122.475, 39.737],
      zoom: 5
    });
    document.querySelector("calcite-shell").hidden = false;
    document.querySelector("calcite-loader").active = false;
  &amp;lt;/script&amp;gt;

&amp;lt;/head&amp;gt;

&amp;lt;body translate="no"&amp;gt;
  &amp;lt;html&amp;gt;

  &amp;lt;head&amp;gt;
    &amp;lt;meta charset="utf-8" /&amp;gt;
    &amp;lt;meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no" /&amp;gt;
    &amp;lt;title&amp;gt;Test&amp;lt;/title&amp;gt;

    &amp;lt;script src="https://js.arcgis.com/calcite-components/1.0.0-beta.77/calcite.esm.js" type="module"&amp;gt;&amp;lt;/script&amp;gt;
    &amp;lt;link rel="stylesheet" href="https://js.arcgis.com/calcite-components/1.0.0-beta.77/calcite.css" /&amp;gt;
    &amp;lt;link rel="stylesheet" href="https://js.arcgis.com/4.22/@arcgis/core/assets/esri/themes/light/main.css" /&amp;gt;
  &amp;lt;/head&amp;gt;
  &amp;lt;style&amp;gt;

  &amp;lt;/style&amp;gt;

  &amp;lt;body&amp;gt;
    &amp;lt;calcite-shell content-behind hidden&amp;gt;
      &amp;lt;calcite-shell-panel slot="primary-panel" detached&amp;gt;
      &amp;lt;/calcite-shell-panel&amp;gt;

      &amp;lt;!--  ShellPanel slot="contextual-panel"  --&amp;gt;
      &amp;lt;calcite-shell-panel slot="contextual-panel" position="end" detached&amp;gt;
        &amp;lt;calcite-block open heading="Test" style="height:1110px"&amp;gt;
          &amp;lt;calcite-tabs&amp;gt;
            &amp;lt;calcite-tab-nav slot="tab-nav" id="thetabs"&amp;gt;
              &amp;lt;calcite-tab-title id="tab2" class="tab2" tab="Tab1" active&amp;gt;Tab1
              &amp;lt;/calcite-tab-title&amp;gt;
              &amp;lt;calcite-tab tab="Tab1" style="height: 750px;"&amp;gt;
                &amp;lt;calcite-popover label="Example label" reference-element="popover-button"&amp;gt;
                  &amp;lt;p style="padding:0 10px;display:flex;flex-direction:row"&amp;gt;
                    Popover content here
                  &amp;lt;/p&amp;gt;
                &amp;lt;/calcite-popover&amp;gt;
                &amp;lt;calcite-link id="popover-button"&amp;gt;Activate Popover&amp;lt;/calcite-link&amp;gt;

              &amp;lt;/calcite-tab&amp;gt;

          &amp;lt;/calcite-tabs&amp;gt;
        &amp;lt;/calcite-block&amp;gt;

      &amp;lt;/calcite-shell-panel&amp;gt;

      &amp;lt;div id="viewDiv"&amp;gt;&amp;lt;/div&amp;gt;
    &amp;lt;/calcite-shell&amp;gt;
  &amp;lt;/body&amp;gt;
  &amp;lt;/html&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 27 May 2022 01:15:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/calcite-design-system-questions/popover-not-showing-up/m-p/1177811#M140</guid>
      <dc:creator>LefterisKoumis</dc:creator>
      <dc:date>2022-05-27T01:15:52Z</dc:date>
    </item>
    <item>
      <title>Re: Popover not showing up</title>
      <link>https://community.esri.com/t5/calcite-design-system-questions/popover-not-showing-up/m-p/1178011#M141</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/14521"&gt;@LefterisKoumis&lt;/a&gt;:&lt;/P&gt;&lt;P&gt;We deprecated the &lt;A href="https://github.com/Esri/calcite-components/blob/master/CHANGELOG.md#100-beta82-2022-05-10" target="_blank" rel="noopener"&gt;calcite-popover-manager in beta.82&lt;/A&gt;, so for older versions of Calcite the &lt;A href="https://developers.arcgis.com/calcite-design-system/components/popover-manager/" target="_blank" rel="noopener"&gt;calcite-popover-manager&lt;/A&gt; is needed. You could also add in the &lt;A href="https://developers.arcgis.com/calcite-design-system/components/popover/#component-api-properties-overlayPositioning" target="_blank" rel="noopener"&gt;overlay-positioning="fixed"&lt;/A&gt; to the calcite-popover to ensure its shown in the container, like so (also full &lt;A href="https://codepen.io/geospatialem/pen/mdXpjNe" target="_blank" rel="noopener"&gt;Codepen&lt;/A&gt; example):&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;calcite-tabs&amp;gt;
    &amp;lt;calcite-tab-nav slot="tab-nav" id="thetabs"&amp;gt;
        &amp;lt;calcite-tab-title id="tab2" class="tab2" tab="Tab1" active&amp;gt;Tab1&amp;lt;/calcite-tab-title&amp;gt;
    &amp;lt;/calcite-tab-nav&amp;gt;
    &amp;lt;calcite-tab tab="Tab1" style="height: 750px;"&amp;gt;
        &amp;lt;calcite-popover-manager&amp;gt;
            &amp;lt;calcite-popover overlay-positioning="fixed" label="Example label" reference-element="popover-button"&amp;gt;
                &amp;lt;p style="padding:0 10px;display:flex;flex-direction:row"&amp;gt;Popover content here&amp;lt;/p&amp;gt;
            &amp;lt;/calcite-popover&amp;gt;
&amp;lt;calcite-link id="popover-button"&amp;gt;Activate Popover&amp;lt;/calcite-link&amp;gt;
        &amp;lt;/calcite-popover-manager&amp;gt;
    &amp;lt;/calcite-tab&amp;gt;
&amp;lt;/calcite-tabs&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 27 May 2022 16:00:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/calcite-design-system-questions/popover-not-showing-up/m-p/1178011#M141</guid>
      <dc:creator>KittyHurley</dc:creator>
      <dc:date>2022-05-27T16:00:27Z</dc:date>
    </item>
    <item>
      <title>Re: Popover not showing up</title>
      <link>https://community.esri.com/t5/calcite-design-system-questions/popover-not-showing-up/m-p/1178023#M142</link>
      <description>&lt;P&gt;Thank you. It works. However at:&lt;BR /&gt;&lt;A href="https://developers.arcgis.com/calcite-design-system/components/popover/" target="_blank"&gt;https://developers.arcgis.com/calcite-design-system/components/popover/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;there should be a note that popover is depreciated.&lt;/P&gt;</description>
      <pubDate>Fri, 27 May 2022 16:30:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/calcite-design-system-questions/popover-not-showing-up/m-p/1178023#M142</guid>
      <dc:creator>LefterisKoumis</dc:creator>
      <dc:date>2022-05-27T16:30:31Z</dc:date>
    </item>
    <item>
      <title>Re: Popover not showing up</title>
      <link>https://community.esri.com/t5/calcite-design-system-questions/popover-not-showing-up/m-p/1178025#M143</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/14521"&gt;@LefterisKoumis&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;Thank you. It works. However at:&lt;BR /&gt;&lt;A href="https://developers.arcgis.com/calcite-design-system/components/popover/" target="_blank" rel="noopener"&gt;https://developers.arcgis.com/calcite-design-system/components/popover/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;there should be a note that popover is depreciated.&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Great to hear its working!&lt;/P&gt;&lt;P&gt;Popover is supported, however &lt;A href="https://developers.arcgis.com/calcite-design-system/components/popover-manager/" target="_blank" rel="noopener"&gt;Popover Manager&lt;/A&gt; is the deprecation. We updated the documentation pages and samples to reflect the deprecation.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 27 May 2022 16:37:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/calcite-design-system-questions/popover-not-showing-up/m-p/1178025#M143</guid>
      <dc:creator>KittyHurley</dc:creator>
      <dc:date>2022-05-27T16:37:00Z</dc:date>
    </item>
    <item>
      <title>Re: Popover not showing up</title>
      <link>https://community.esri.com/t5/calcite-design-system-questions/popover-not-showing-up/m-p/1178032#M144</link>
      <description>&lt;P&gt;ok, thanks for the clarification, perhaps should be a note on the popover page that prior to beta.82, popover manager is needed. Not everyone checks the github updates frequently.&lt;/P&gt;</description>
      <pubDate>Fri, 27 May 2022 16:59:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/calcite-design-system-questions/popover-not-showing-up/m-p/1178032#M144</guid>
      <dc:creator>LefterisKoumis</dc:creator>
      <dc:date>2022-05-27T16:59:40Z</dc:date>
    </item>
    <item>
      <title>Re: Popover not showing up</title>
      <link>https://community.esri.com/t5/calcite-design-system-questions/popover-not-showing-up/m-p/1179942#M148</link>
      <description>&lt;P&gt;Thank you for your feedback on updating our documentation to reflect the deprecation, &lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/14521"&gt;@LefterisKoumis&lt;/a&gt;&amp;nbsp;.&lt;/P&gt;&lt;P&gt;As a result of your comment this week we added some notes on the deprecation to the &lt;A href="https://developers.arcgis.com/calcite-design-system/components/popover/" target="_blank" rel="noopener"&gt;Popover page&lt;/A&gt;.&lt;/P&gt;</description>
      <pubDate>Fri, 03 Jun 2022 21:38:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/calcite-design-system-questions/popover-not-showing-up/m-p/1179942#M148</guid>
      <dc:creator>KittyHurley</dc:creator>
      <dc:date>2022-06-03T21:38:27Z</dc:date>
    </item>
  </channel>
</rss>

