<?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: Add collapsible Floating Panel at bottom for FeatureTable widget ? in Calcite Design System Questions</title>
    <link>https://community.esri.com/t5/calcite-design-system-questions/add-collapsible-floating-panel-at-bottom-for/m-p/1355312#M536</link>
    <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/574219"&gt;@KittyHurley&lt;/a&gt;&amp;nbsp;I just came across this posting and it helped me a lot to place the feature table at the bottom without the CSS hellhole. It would be great if calcite-table would be able read a feature table to populate its headers and rows. It can be done with quite bit of JS loops but it has to be an easier way.&lt;/P&gt;</description>
    <pubDate>Thu, 30 Nov 2023 18:51:45 GMT</pubDate>
    <dc:creator>LefterisKoumis</dc:creator>
    <dc:date>2023-11-30T18:51:45Z</dc:date>
    <item>
      <title>Add collapsible Floating Panel at bottom for FeatureTable widget ?</title>
      <link>https://community.esri.com/t5/calcite-design-system-questions/add-collapsible-floating-panel-at-bottom-for/m-p/1247538#M289</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I am following tutorial Creating a Map app from here&amp;nbsp;&lt;A href="https://developers.arcgis.com/calcite-design-system/tutorials/create-a-mapping-app/" target="_blank"&gt;Create a mapping app | Calcite Design System | ArcGIS Developers&lt;/A&gt;&amp;nbsp;.&lt;/P&gt;&lt;P&gt;I want to add collapsible floating panel at bottom of page for AttributeTable/FeatureTable widget like below example.&lt;/P&gt;&lt;P&gt;&lt;IMG src="https://user-images.githubusercontent.com/12503298/80659077-bb1afb80-8a3c-11ea-9e4e-f2aad7480699.png" border="0" /&gt;&lt;/P&gt;&lt;P&gt;There is calcite-shell-centre-row and not getting where to add in the page to align to the bottom of page. I tried to add inside calcite-shell tag however it is added below view Div, it doesn't fit into the page and added scrollbar to page.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MayurDodiya_1-1673506437386.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/60261iE1DA09CC222F219A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="MayurDodiya_1-1673506437386.png" alt="MayurDodiya_1-1673506437386.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&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;meta http-equiv="X-UA-Compatible" content="IE=edge" /&amp;gt;
    &amp;lt;meta name="viewport" content="width=device-width, initial-scale=1.0" /&amp;gt;
    &amp;lt;title&amp;gt;Calcite Demo&amp;lt;/title&amp;gt;
    &amp;lt;style&amp;gt;
      body {
        display: flex;
      }
      html,
      body,
      #viewDiv {
        padding: 0;
        margin: 0;
        height: 100%;
        width: 100%;
      }
      #headerDiv {
        text-align: center;
        height: 30px;
      }
      .calcite-tutorial {
        --calcite-ui-brand: #0079c1;
        --calcite-ui-brand-hover: #0079c1;
      }

      .calcite-tutorial calcite-chip {
        --calcite-ui-foreground-2: var(--calcite-ui-brand);
        --calcite-ui-text-1: white;
        margin-inline-end: 0.75rem;
      }
      .esri-view .esri-view-surface--inset-outline:focus::after {
        outline: none !important;
      }
    &amp;lt;/style&amp;gt;
    &amp;lt;script
      type="module"
      src="https://js.arcgis.com/calcite-components/1.0.0-beta.99/calcite.esm.js"
    &amp;gt;&amp;lt;/script&amp;gt;
    &amp;lt;link
      rel="stylesheet"
      type="text/css"
      href="https://js.arcgis.com/calcite-components/1.0.0-beta.99/calcite.css"
    /&amp;gt;
    &amp;lt;link
      rel="stylesheet"
      href="https://js.arcgis.com/4.25/esri/themes/light/main.css"
    /&amp;gt;
    &amp;lt;script src="https://js.arcgis.com/4.25/"&amp;gt;&amp;lt;/script&amp;gt;
  &amp;lt;/head&amp;gt;
  &amp;lt;body&amp;gt;
    &amp;lt;script&amp;gt;
      require([
        "esri/Map",
        "esri/WebMap",
        "esri/views/MapView",
        "esri/widgets/Bookmarks",
        "esri/widgets/BasemapGallery",
        "esri/widgets/LayerList",
        "esri/widgets/Legend",
        "esri/widgets/Print",
        "esri/widgets/Home",
        "esri/widgets/ScaleBar",
        "esri/layers/FeatureLayer",
        "esri/symbols/WebStyleSymbol",
        "esri/rest/support/TopFeaturesQuery",
        "esri/rest/support/TopFilter",
      ], (
        Map,
        WebMap,
        MapView,
        Bookmarks,
        BasemapGallery,
        LayerList,
        Legend,
        Print,
        Home,
        ScaleBar,
        FeatureLayer,
        WebStyleSymbol,
        TopFeaturesQuery,
        TopFilter
      ) =&amp;gt;
        (async () =&amp;gt; {
          // const map = new Map({
          //   basemap: "streets-vector", // Basemap layer service
          // });

          const layer = new FeatureLayer({
            url: "https://services.arcgis.com/V6ZHFr6zdgNZuVG0/arcgis/rest/services/US_National_Parks_Annual_Visitation/FeatureServer/0",
            outFields: ["*"],
            renderer: await setRenderer(),
            popupTemplate: createPopupTemplate(),
          });
          const map = new Map({
            basemap: "streets-navigation-vector",
            layers: [layer],
          });
          //   const map = new WebMap({
          //     portalItem: {
          //       id: "210c5b77056846808c7a5ce93920be81",
          //     },
          //   });
          const view = new MapView({
            map: map,
            //center: [-118.805, 34.027], // Longitude, latitude
            //zoom: 13, // Zoom level
            container: "viewDiv", // Div element
            padding: {
              left: 49,
            },
            center: [-120, 45],
            zoom: 3,
          });
          const basemaps = new BasemapGallery({
            view,
            container: "basemaps-container",
          });
          const bookmarks = new Bookmarks({
            view,
            container: "bookmarks-container",
            editingEnabled: true,
          });
          const layerList = new LayerList({
            view,
            selectionEnabled: true,
            container: "layers-container",
          });
          const legend = new Legend({
            view,
            container: "legend-container",
          });
          const print = new Print({
            view,
            container: "print-container",
          });
          const scaleBar = new ScaleBar({
            view: view,
            unit: "dual", // The scale bar displays both metric and non-metric units.
          });
          view.ui.add(scaleBar, {
            position: "bottom-left",
          });
          let homeWidget = new Home({
            view: view,
          });

          view.ui.add(homeWidget, "top-left");
          view.ui.move("zoom", "top-left");
          const layerView = await view.whenLayerView(layer);
          view.when(() =&amp;gt; {
            //   map.when(() =&amp;gt; {
            let activeWidget;

            const handleActionBarClick = ({ target }) =&amp;gt; {
              if (target.tagName !== "CALCITE-ACTION") {
                return;
              }

              if (activeWidget) {
                document.querySelector(
                  `[data-action-id=${activeWidget}]`
                ).active = false;
                document.querySelector(
                  `[data-panel-id=${activeWidget}]`
                ).hidden = true;
              }

              const nextWidget = target.dataset.actionId;
              if (nextWidget !== activeWidget) {
                document.querySelector(
                  `[data-action-id=${nextWidget}]`
                ).active = true;
                document.querySelector(
                  `[data-panel-id=${nextWidget}]`
                ).hidden = false;
                activeWidget = nextWidget;
              } else {
                activeWidget = null;
              }
            };
            document
              .querySelector("calcite-action-bar")
              .addEventListener("click", handleActionBarClick);
            let actionBarExpanded = false;

            document.addEventListener("calciteActionBarToggle", (event) =&amp;gt; {
              actionBarExpanded = !actionBarExpanded;
              view.padding = {
                left: actionBarExpanded ? 135 : 45,
              };
            });
          });
          async function setRenderer() {
            const symbol = new WebStyleSymbol({
              name: "park",
              styleName: "Esri2DPointSymbolsStyle",
            });

            const cimSymbol = await symbol.fetchCIMSymbol();
            cimSymbol.data.symbol.symbolLayers[0].size = 24;
            cimSymbol.data.symbol.symbolLayers[1].size = 0;

            return {
              type: "simple",
              symbol: cimSymbol,
            };
          }
          function createPopupTemplate() {
            return {
              title: "{Park}",
              content: [
                {
                  type: "fields",
                  fieldInfos: [
                    {
                      fieldName: "TOTAL",
                      label: "Total visits",
                      format: { digitSeparator: true },
                    },
                    {
                      fieldName: "F2018",
                      label: "2018",
                      format: { digitSeparator: true },
                    },
                    {
                      fieldName: "F2019",
                      label: "2019",
                      format: { digitSeparator: true },
                    },
                    {
                      fieldName: "F2020",
                      label: "2020",
                      format: { digitSeparator: true },
                    },
                  ],
                },
              ],
            };
          }
          const controlVisitedTypeEl = document.getElementById(
            "control-visited-type-el"
          );
          const controlYearEl = document.getElementById("control-year-el");
          const controlCountPerStateEl = document.getElementById(
            "control-count-per-state-el"
          );
          const controlResetEl = document.getElementById("control-reset-el");
          controlVisitedTypeEl.addEventListener(
            "calciteRadioGroupChange",
            async (event) =&amp;gt; {
              (orderBy = event.target.value), filterItems();
            }
          );
          controlYearEl.addEventListener(
            "calciteSelectChange",
            async (event) =&amp;gt; {
              (year = event.target.value), filterItems();
            }
          );
          controlCountPerStateEl.addEventListener(
            "calciteSliderChange",
            async (event) =&amp;gt; {
              (count = event.target.value), filterItems();
            }
          );
          controlResetEl.addEventListener("click", async () =&amp;gt; resetFilters());

          const countDefault = 1;
          const orderByDefault = "DESC";
          const yearDefault = "TOTAL";
          let count = countDefault;
          let orderBy = orderByDefault;
          let year = yearDefault;
          async function filterItems() {
            const query = new TopFeaturesQuery({
              topFilter: new TopFilter({
                topCount: count,
                groupByFields: ["State"],
                orderByFields: `${year} ${orderBy}`,
              }),
              orderByFields: `${year} ${orderBy}`,
              outFields: ["State, TOTAL, F2018, F2019, F2020, Park"],
              returnGeometry: true,
              cacheHint: false,
            });

            document.getElementById("result-list").innerHTML = "";
            document.getElementById("result-block").open = true;

            const results = await layer.queryTopFeatures(query);
            graphics = results.features;

            graphics.forEach((result, index) =&amp;gt; {
              const attributes = result.attributes;
              const item = document.createElement("calcite-list-item");
              const chip = document.createElement("calcite-chip");
              chip.value = attributes.State;
              chip.slot = "content-end";
              chip.scale = "s";
              chip.innerText = attributes.State;
              item.label = attributes.Park;
              item.value = index;
              item.description = `${attributes[
                yearDefault
              ].toLocaleString()} visitors`;
              item.addEventListener("click", () =&amp;gt;
                resultClickHandler(result, index)
              );
              item.appendChild(chip);
              document.getElementById("result-list").appendChild(item);
            });

            query.orderByFields = [""];
            const objectIds = await layer.queryTopObjectIds(query);
            layerView.filter = { objectIds };

            determineResetActionState();
          }
          function resultClickHandler(result, index) {
            const popup = graphics &amp;amp;&amp;amp; graphics[parseInt(index, 10)];
            if (popup) {
              view.popup.open({
                features: [popup],
                location: result.geometry,
              });
              view.goTo(
                {
                  center: [result.geometry.longitude, result.geometry.latitude],
                  zoom: 4,
                },
                { duration: 400 }
              );
            }
          }
          function determineResetActionState() {
            if (
              count !== countDefault ||
              orderBy !== orderByDefault ||
              year !== yearDefault
            ) {
              controlResetEl.removeAttribute("disabled");
              controlResetEl.indicator = true;
            } else {
              controlResetEl.disabled = true;
              controlResetEl.removeAttribute("indicator");
            }
          }
          function resetFilters() {
            count = countDefault;
            orderBy = orderByDefault;
            year = yearDefault;

            const activeRadioGroupItem = document.querySelector(
              `calcite-radio-group-item[value=${orderByDefault}]`
            );
            activeRadioGroupItem.checked = true;
            controlYearEl.value = yearDefault;
            controlCountPerStateEl.value = countDefault;

            filterItems();
          }
          filterItems();
        })());
    &amp;lt;/script&amp;gt;
    &amp;lt;calcite-shell content-behind class="calcite-tutorial"&amp;gt;
      &amp;lt;div id="#headerDiv" slot="header"&amp;gt;
        &amp;lt;!-- &amp;lt;header&amp;gt;
          &amp;lt;h3&amp;gt;ArcGIS Display Map&amp;lt;/h3&amp;gt;
        &amp;lt;/header&amp;gt; --&amp;gt;
        &amp;lt;calcite-panel heading="ArcGIS Display Map"&amp;gt;&amp;lt;/calcite-panel&amp;gt;
      &amp;lt;/div&amp;gt;

      &amp;lt;calcite-shell-panel
        slot="panel-start"
        position="start"
        detached
        collapse="true"
        detachedHeightScale="s"
      &amp;gt;
        &amp;lt;calcite-action-bar slot="action-bar"&amp;gt;
          &amp;lt;calcite-action
            data-action-id="layers"
            icon="layers"
            text="Layers"
          &amp;gt;&amp;lt;/calcite-action&amp;gt;
          &amp;lt;calcite-action
            data-action-id="basemaps"
            icon="basemap"
            text="Basemaps"
          &amp;gt;&amp;lt;/calcite-action&amp;gt;
          &amp;lt;calcite-action
            data-action-id="legend"
            icon="legend"
            text="Legend"
          &amp;gt;&amp;lt;/calcite-action&amp;gt;
          &amp;lt;calcite-action
            data-action-id="bookmarks"
            icon="bookmark"
            text="Bookmarks"
          &amp;gt;&amp;lt;/calcite-action&amp;gt;
          &amp;lt;calcite-action
            data-action-id="print"
            icon="print"
            text="Print"
          &amp;gt;&amp;lt;/calcite-action&amp;gt;
          &amp;lt;calcite-action
            data-action-id="information"
            icon="filter"
            text="Filter"
          &amp;gt;
          &amp;lt;/calcite-action&amp;gt;
        &amp;lt;/calcite-action-bar&amp;gt;

        &amp;lt;calcite-panel
          heading="Layers"
          height-scale="l"
          data-panel-id="layers"
          hidden
        &amp;gt;
          &amp;lt;div id="layers-container"&amp;gt;&amp;lt;/div&amp;gt;
        &amp;lt;/calcite-panel&amp;gt;
        &amp;lt;calcite-panel
          heading="Basemaps"
          height-scale="l"
          data-panel-id="basemaps"
          hidden
        &amp;gt;
          &amp;lt;div id="basemaps-container"&amp;gt;&amp;lt;/div&amp;gt;
        &amp;lt;/calcite-panel&amp;gt;
        &amp;lt;calcite-panel
          heading="Legend"
          height-scale="l"
          data-panel-id="legend"
          hidden
        &amp;gt;
          &amp;lt;div id="legend-container"&amp;gt;&amp;lt;/div&amp;gt;
        &amp;lt;/calcite-panel&amp;gt;
        &amp;lt;calcite-panel
          heading="Bookmarks"
          height-scale="l"
          data-panel-id="bookmarks"
          hidden
        &amp;gt;
          &amp;lt;div id="bookmarks-container"&amp;gt;&amp;lt;/div&amp;gt;
        &amp;lt;/calcite-panel&amp;gt;
        &amp;lt;calcite-panel
          heading="Print"
          height-scale="l"
          data-panel-id="print"
          hidden
        &amp;gt;
          &amp;lt;div id="print-container"&amp;gt;&amp;lt;/div&amp;gt;
        &amp;lt;/calcite-panel&amp;gt;
        &amp;lt;calcite-panel
          heading="National Park Visitation"
          data-panel-id="information"
          hidden
        &amp;gt;
          &amp;lt;calcite-block heading="Filters" open&amp;gt;
            &amp;lt;div slot="control"&amp;gt;
              &amp;lt;calcite-action
                disabled
                icon="reset"
                id="control-reset-el"
              &amp;gt;&amp;lt;/calcite-action&amp;gt;
              &amp;lt;calcite-tooltip
                label="Reset to defaults"
                reference-element="control-reset-el"
                position="bottom"
              &amp;gt;
                Reset to defaults
              &amp;lt;/calcite-tooltip&amp;gt;
            &amp;lt;/div&amp;gt;
            &amp;lt;calcite-label&amp;gt;
              Data type, per state
              &amp;lt;calcite-radio-group id="control-visited-type-el" width="full"&amp;gt;
                &amp;lt;calcite-radio-group-item value="DESC" checked
                  &amp;gt;Most visited&amp;lt;/calcite-radio-group-item
                &amp;gt;
                &amp;lt;calcite-radio-group-item value="ASC"
                  &amp;gt;Least visited&amp;lt;/calcite-radio-group-item
                &amp;gt;
              &amp;lt;/calcite-radio-group&amp;gt;
            &amp;lt;/calcite-label&amp;gt;
            &amp;lt;calcite-label&amp;gt;
              Year data to display
              &amp;lt;calcite-select id="control-year-el"&amp;gt;
                &amp;lt;calcite-option
                  label="Total of all time"
                  value="TOTAL"
                &amp;gt;&amp;lt;/calcite-option&amp;gt;
                &amp;lt;calcite-option label="2018" value="F2018"&amp;gt;&amp;lt;/calcite-option&amp;gt;
                &amp;lt;calcite-option label="2019" value="F2019"&amp;gt;&amp;lt;/calcite-option&amp;gt;
                &amp;lt;calcite-option label="2020" value="F2020"&amp;gt;&amp;lt;/calcite-option&amp;gt;
              &amp;lt;/calcite-select&amp;gt;
            &amp;lt;/calcite-label&amp;gt;
            &amp;lt;calcite-label&amp;gt;
              Max parks per state
              &amp;lt;calcite-slider
                id="control-count-per-state-el"
                label-ticks
                ticks="1"
                min="1"
                max="5"
              &amp;gt;&amp;lt;/calcite-slider&amp;gt;
            &amp;lt;/calcite-label&amp;gt;
          &amp;lt;/calcite-block&amp;gt;
          &amp;lt;calcite-block collapsible heading="Results" id="result-block"&amp;gt;
            &amp;lt;calcite-list id="result-list"&amp;gt;&amp;lt;/calcite-list&amp;gt;
          &amp;lt;/calcite-block&amp;gt;
        &amp;lt;/calcite-panel&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-center-row&amp;gt;&amp;lt;/calcite-shell-center-row&amp;gt;
      &amp;lt;!-- &amp;lt;footer slot="footer"&amp;gt;ArcGIS JavaScript Maps SDk for JavaScript&amp;lt;/footer&amp;gt; --&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;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 12 Jan 2023 06:57:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/calcite-design-system-questions/add-collapsible-floating-panel-at-bottom-for/m-p/1247538#M289</guid>
      <dc:creator>MayurDodiya</dc:creator>
      <dc:date>2023-01-12T06:57:34Z</dc:date>
    </item>
    <item>
      <title>Re: Add collapsible Floating Panel at bottom for FeatureTable widget ?</title>
      <link>https://community.esri.com/t5/calcite-design-system-questions/add-collapsible-floating-panel-at-bottom-for/m-p/1249630#M291</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/3665"&gt;@MayurDodiya&lt;/a&gt;, the demo screenshot mentioned uses &lt;A href="https://developers.arcgis.com/calcite-design-system/components/shell-center-row/" target="_blank" rel="noopener"&gt;Shell Center Row&lt;/A&gt;, however it uses a custom table with styling which has some conflicts with ArcGIS Maps SDK for JavaScript &lt;A href="https://developers.arcgis.com/javascript/latest/api-reference/esri-widgets-FeatureTable.html" target="_blank" rel="noopener"&gt;FeatureTable&lt;/A&gt; widget.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Put together a few Codepen samples with some basic FeatureTable widget functionality.&amp;nbsp;&lt;A href="https://codepen.io/geospatialem/pen/GRBOwMQ" target="_self"&gt;One with the widget with the Create a mapping app tutorial,&lt;/A&gt; and the other with a &lt;A href="https://codepen.io/geospatialem/pen/vYaWbPX" target="_self"&gt;customized table using Shell Center Row&lt;/A&gt;, which would need additional styling and functionality to work more cohesively with the FeatureTable widget.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For more advanced FeatureTable properties and methods would also recommend checking out some of the&amp;nbsp;&lt;A href="https://developers.arcgis.com/javascript/latest/sample-code/widgets-featuretable-map/" target="_blank" rel="noopener"&gt;fantastic FeatureTable samples&lt;/A&gt; available on ArcGIS Maps SDK for JavaScript's site.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We're also evaluating our layout components for opportunities to improve in the future. Stay tuned for additional functionality and updates!&lt;/P&gt;</description>
      <pubDate>Thu, 19 Jan 2023 19:08:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/calcite-design-system-questions/add-collapsible-floating-panel-at-bottom-for/m-p/1249630#M291</guid>
      <dc:creator>KittyHurley</dc:creator>
      <dc:date>2023-01-19T19:08:32Z</dc:date>
    </item>
    <item>
      <title>Re: Add collapsible Floating Panel at bottom for FeatureTable widget ?</title>
      <link>https://community.esri.com/t5/calcite-design-system-questions/add-collapsible-floating-panel-at-bottom-for/m-p/1355312#M536</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/574219"&gt;@KittyHurley&lt;/a&gt;&amp;nbsp;I just came across this posting and it helped me a lot to place the feature table at the bottom without the CSS hellhole. It would be great if calcite-table would be able read a feature table to populate its headers and rows. It can be done with quite bit of JS loops but it has to be an easier way.&lt;/P&gt;</description>
      <pubDate>Thu, 30 Nov 2023 18:51:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/calcite-design-system-questions/add-collapsible-floating-panel-at-bottom-for/m-p/1355312#M536</guid>
      <dc:creator>LefterisKoumis</dc:creator>
      <dc:date>2023-11-30T18:51:45Z</dc:date>
    </item>
    <item>
      <title>Re: Add collapsible Floating Panel at bottom for FeatureTable widget ?</title>
      <link>https://community.esri.com/t5/calcite-design-system-questions/add-collapsible-floating-panel-at-bottom-for/m-p/1355424#M537</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/14521"&gt;@LefterisKoumis&lt;/a&gt;&amp;nbsp;Calcite is working towards a more advanced table component, building on functionality from the newly released&amp;nbsp;&lt;A href="https://developers.arcgis.com/calcite-design-system/components/table/" target="_blank" rel="noopener"&gt;Table&lt;/A&gt;&amp;nbsp;component. Stay tuned for more information in the coming months and into 2024, as the efforts are currently in the design phase.&lt;/P&gt;</description>
      <pubDate>Thu, 30 Nov 2023 21:56:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/calcite-design-system-questions/add-collapsible-floating-panel-at-bottom-for/m-p/1355424#M537</guid>
      <dc:creator>KittyHurley</dc:creator>
      <dc:date>2023-11-30T21:56:01Z</dc:date>
    </item>
    <item>
      <title>Re: Add collapsible Floating Panel at bottom for FeatureTable widget ?</title>
      <link>https://community.esri.com/t5/calcite-design-system-questions/add-collapsible-floating-panel-at-bottom-for/m-p/1355440#M538</link>
      <description>&lt;P&gt;Thank you. Exactly what I want for Xmas!&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":grinning_face:"&gt;😀&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Nov 2023 22:26:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/calcite-design-system-questions/add-collapsible-floating-panel-at-bottom-for/m-p/1355440#M538</guid>
      <dc:creator>LefterisKoumis</dc:creator>
      <dc:date>2023-11-30T22:26:21Z</dc:date>
    </item>
    <item>
      <title>Re: Add collapsible Floating Panel at bottom for FeatureTable widget ?</title>
      <link>https://community.esri.com/t5/calcite-design-system-questions/add-collapsible-floating-panel-at-bottom-for/m-p/1512459#M674</link>
      <description>&lt;P&gt;Hello Kitty. Any updates on the calcite table component. Will features from a layer populate a calcite table?&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jul 2024 16:54:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/calcite-design-system-questions/add-collapsible-floating-panel-at-bottom-for/m-p/1512459#M674</guid>
      <dc:creator>LefterisKoumis</dc:creator>
      <dc:date>2024-07-30T16:54:20Z</dc:date>
    </item>
    <item>
      <title>Re: Add collapsible Floating Panel at bottom for FeatureTable widget ?</title>
      <link>https://community.esri.com/t5/calcite-design-system-questions/add-collapsible-floating-panel-at-bottom-for/m-p/1512464#M675</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/14521"&gt;@LefterisKoumis&lt;/a&gt;&amp;nbsp;No update at this time, other priorities have shifted the advanced table implementation to 2025 or beyond.&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jul 2024 17:06:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/calcite-design-system-questions/add-collapsible-floating-panel-at-bottom-for/m-p/1512464#M675</guid>
      <dc:creator>KittyHurley</dc:creator>
      <dc:date>2024-07-30T17:06:28Z</dc:date>
    </item>
  </channel>
</rss>

