<?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: Combobox and Datepicker not displaying over panel in Calcite Design System Questions</title>
    <link>https://community.esri.com/t5/calcite-design-system-questions/combobox-and-datepicker-not-displaying-over-panel/m-p/1190817#M168</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/601270"&gt;@BenPitcairn&lt;/a&gt;, great question!&lt;/P&gt;&lt;P&gt;When using a fixed container, like panel&amp;nbsp;to contain components, you could use the "overlay-positioning" attribute to position the components, in this case to the &lt;A href="https://developers.arcgis.com/calcite-design-system/components/input-date-picker/#component-api-properties-overlayPositioning" target="_blank" rel="noopener"&gt;input-date-picker&lt;/A&gt; and &lt;A href="https://developers.arcgis.com/calcite-design-system/components/combobox/#component-api-properties-overlayPositioning" target="_blank" rel="noopener"&gt;combobox&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;If you have a large number of combobox items, you could also use the "&lt;A href="https://developers.arcgis.com/calcite-design-system/components/combobox/#component-api-properties-maxItems" target="_blank" rel="noopener"&gt;max-items&lt;/A&gt;" attribute that adds a scrollbar to the combobox items beyond the number specified.&lt;/P&gt;&lt;P&gt;For instance:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;calcite-panel heading="Heading" dismissible&amp;gt;
    &amp;lt;calcite-input-date-picker locale="en-gb" overlay-positioning="fixed"&amp;gt;&amp;lt;/calcite-input-date-picker&amp;gt;
    &amp;lt;calcite-combobox selection-mode="single" label="Combobox" overlay-positioning="fixed" max-items="10"&amp;gt;
        {% for item in item_list %}
            &amp;lt;calcite-combobox-item text-label="{{ item.label }}" value="{{ item.value }}"&amp;gt;&amp;lt;/calcite-combobox-item&amp;gt;
        {% endfor %}
    &amp;lt;/calcite-combobox&amp;gt;
    &amp;lt;calcite-button slot="footer-actions"&amp;gt;Save&amp;lt;/calcite-button&amp;gt;
&amp;lt;/calcite-panel&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 08 Jul 2022 14:12:25 GMT</pubDate>
    <dc:creator>KittyHurley</dc:creator>
    <dc:date>2022-07-08T14:12:25Z</dc:date>
    <item>
      <title>Combobox and Datepicker not displaying over panel</title>
      <link>https://community.esri.com/t5/calcite-design-system-questions/combobox-and-datepicker-not-displaying-over-panel/m-p/1190761#M167</link>
      <description>&lt;P&gt;I am using the `combobox` and `input-date-picker` inside a panel. However the dropdown/popups don't display over the panel, they display inside it causing a scrollbar to be active on the panel and the date-picker/combo options not to be visible. This is not the behaviour I was expecting, when using a `select` the dropdown behaves as expected and is displayed on top of everythin else.&lt;/P&gt;&lt;P&gt;Am I using the componenets in the intended way?&lt;/P&gt;&lt;P&gt;Minimal example:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;calcite-panel heading="Heading" dismissible&amp;gt;
    &amp;lt;calcite-input-date-picker locale="en-gb"&amp;gt;&amp;lt;/calcite-input-date-picker&amp;gt;
    &amp;lt;calcite-combobox selection-mode="single" label="Combobox"&amp;gt;
        {% for item in item_list %}
            &amp;lt;calcite-combobox-item text-label="{{ item.label }}" value="{{ item.value }}"&amp;gt;&amp;lt;/calcite-combobox-item&amp;gt;
        {% endfor %}
    &amp;lt;/calcite-combobox&amp;gt;
    &amp;lt;calcite-button slot="footer-actions"&amp;gt;Save&amp;lt;/calcite-button&amp;gt;
&amp;lt;/calcite-panel&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, 08 Jul 2022 10:12:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/calcite-design-system-questions/combobox-and-datepicker-not-displaying-over-panel/m-p/1190761#M167</guid>
      <dc:creator>BenPitcairn</dc:creator>
      <dc:date>2022-07-08T10:12:17Z</dc:date>
    </item>
    <item>
      <title>Re: Combobox and Datepicker not displaying over panel</title>
      <link>https://community.esri.com/t5/calcite-design-system-questions/combobox-and-datepicker-not-displaying-over-panel/m-p/1190817#M168</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/601270"&gt;@BenPitcairn&lt;/a&gt;, great question!&lt;/P&gt;&lt;P&gt;When using a fixed container, like panel&amp;nbsp;to contain components, you could use the "overlay-positioning" attribute to position the components, in this case to the &lt;A href="https://developers.arcgis.com/calcite-design-system/components/input-date-picker/#component-api-properties-overlayPositioning" target="_blank" rel="noopener"&gt;input-date-picker&lt;/A&gt; and &lt;A href="https://developers.arcgis.com/calcite-design-system/components/combobox/#component-api-properties-overlayPositioning" target="_blank" rel="noopener"&gt;combobox&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;If you have a large number of combobox items, you could also use the "&lt;A href="https://developers.arcgis.com/calcite-design-system/components/combobox/#component-api-properties-maxItems" target="_blank" rel="noopener"&gt;max-items&lt;/A&gt;" attribute that adds a scrollbar to the combobox items beyond the number specified.&lt;/P&gt;&lt;P&gt;For instance:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;calcite-panel heading="Heading" dismissible&amp;gt;
    &amp;lt;calcite-input-date-picker locale="en-gb" overlay-positioning="fixed"&amp;gt;&amp;lt;/calcite-input-date-picker&amp;gt;
    &amp;lt;calcite-combobox selection-mode="single" label="Combobox" overlay-positioning="fixed" max-items="10"&amp;gt;
        {% for item in item_list %}
            &amp;lt;calcite-combobox-item text-label="{{ item.label }}" value="{{ item.value }}"&amp;gt;&amp;lt;/calcite-combobox-item&amp;gt;
        {% endfor %}
    &amp;lt;/calcite-combobox&amp;gt;
    &amp;lt;calcite-button slot="footer-actions"&amp;gt;Save&amp;lt;/calcite-button&amp;gt;
&amp;lt;/calcite-panel&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 08 Jul 2022 14:12:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/calcite-design-system-questions/combobox-and-datepicker-not-displaying-over-panel/m-p/1190817#M168</guid>
      <dc:creator>KittyHurley</dc:creator>
      <dc:date>2022-07-08T14:12:25Z</dc:date>
    </item>
    <item>
      <title>Re: Combobox and Datepicker not displaying over panel</title>
      <link>https://community.esri.com/t5/calcite-design-system-questions/combobox-and-datepicker-not-displaying-over-panel/m-p/1191149#M173</link>
      <description>&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;That worked. However for the combobox, it now displays at full-width - ie the dropdown covers the full width of the screen, which looks very odd. Is there an auto width&amp;nbsp; option or something?&lt;/P&gt;</description>
      <pubDate>Sun, 10 Jul 2022 12:36:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/calcite-design-system-questions/combobox-and-datepicker-not-displaying-over-panel/m-p/1191149#M173</guid>
      <dc:creator>BenPitcairn</dc:creator>
      <dc:date>2022-07-10T12:36:19Z</dc:date>
    </item>
    <item>
      <title>Re: Combobox and Datepicker not displaying over panel</title>
      <link>https://community.esri.com/t5/calcite-design-system-questions/combobox-and-datepicker-not-displaying-over-panel/m-p/1191305#M174</link>
      <description>&lt;P data-unlink="true"&gt;We don't have a property at this time. You could use &lt;A href="https://developers.arcgis.com/calcite-design-system/components/dropdown" target="_blank" rel="noopener"&gt;dropdown&lt;/A&gt; if you are looking for a smaller footprint in the panel, which also has the "overlay-positioning" and "max-items" attributes.&lt;/P&gt;</description>
      <pubDate>Mon, 11 Jul 2022 17:31:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/calcite-design-system-questions/combobox-and-datepicker-not-displaying-over-panel/m-p/1191305#M174</guid>
      <dc:creator>KittyHurley</dc:creator>
      <dc:date>2022-07-11T17:31:52Z</dc:date>
    </item>
    <item>
      <title>Re: Combobox and Datepicker not displaying over panel</title>
      <link>https://community.esri.com/t5/calcite-design-system-questions/combobox-and-datepicker-not-displaying-over-panel/m-p/1191348#M175</link>
      <description>&lt;P&gt;Thanks -&amp;nbsp; I chose the combobox for the search functionality, it saved me from implimenting it myself.&lt;/P&gt;</description>
      <pubDate>Mon, 11 Jul 2022 19:55:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/calcite-design-system-questions/combobox-and-datepicker-not-displaying-over-panel/m-p/1191348#M175</guid>
      <dc:creator>BenPitcairn</dc:creator>
      <dc:date>2022-07-11T19:55:14Z</dc:date>
    </item>
  </channel>
</rss>

