<?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: Move attribute table to side of page rather than bottom? in ArcGIS Web AppBuilder Questions</title>
    <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/move-attribute-table-to-side-of-page-rather-than/m-p/713066#M18741</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No problem. AGOL appears to be evolving quickly and we're very excited about its potential.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To use WAB locally, does it require 10.3?&amp;nbsp; We're still on 10.1&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 26 Mar 2015 01:55:32 GMT</pubDate>
    <dc:creator>JasonKlrkland</dc:creator>
    <dc:date>2015-03-26T01:55:32Z</dc:date>
    <item>
      <title>Move attribute table to side of page rather than bottom?</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/move-attribute-table-to-side-of-page-rather-than/m-p/713062#M18737</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just a feature request to allow the developer to have the attribute table docked on the left or right side of the page rather than always at the bottom.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A specific use-case is a police/fire vehicle and calls map where the attribute table shows 20-50 active calls. With the widget at the bottom, the user can only see 3-5 records at a time&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Mar 2015 16:28:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/move-attribute-table-to-side-of-page-rather-than/m-p/713062#M18737</guid>
      <dc:creator>JasonKlrkland</dc:creator>
      <dc:date>2015-03-23T16:28:30Z</dc:date>
    </item>
    <item>
      <title>Re: Move attribute table to side of page rather than bottom?</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/move-attribute-table-to-side-of-page-rather-than/m-p/713063#M18738</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://community.esri.com/migrated-users/98734" target="_blank"&gt;Jason Klrkland&lt;/A&gt;​,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just to get you started here is how to move it off of the bottom.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In your main config.json file at the root of your application move this chunk of code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "uri": "widgets/AttributeTable/Widget",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "positionRelativeTo": "browser",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "version": "1.1",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "id": "widgets/AttributeTable/Widget_11",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "position": {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "left": 0,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "top": 0
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; },
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "name": "AttributeTable",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "label": "Attribute Table",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "config": "configs/AttributeTable/config_Attribute Table.json"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; },&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To the bottom widget pool. It would look something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;..... 
 "widgetPool": {
&amp;nbsp;&amp;nbsp;&amp;nbsp; "panel": {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "uri": "themes/FoldableTheme/panels/FoldablePanel/Panel",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "positionRelativeTo": "map",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "position": {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "top": 5,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "right": 5,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "bottom": 5
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }
&amp;nbsp;&amp;nbsp;&amp;nbsp; },
&amp;nbsp;&amp;nbsp;&amp;nbsp; "widgets": [
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "uri": "widgets/Legend/Widget",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "version": "1.1",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "id": "widgets/Legend/Widget_13",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "index": 2,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "name": "Legend",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "label": "Legend"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; },
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "uri": "widgets/AttributeTable/Widget",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "positionRelativeTo": "browser",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "version": "1.1",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "id": "widgets/AttributeTable/Widget_11",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "position": {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "left": 0,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "top": 0
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; },
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "name": "AttributeTable",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "label": "Attribute Table",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "config": "configs/AttributeTable/config_Attribute Table.json"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; },
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ......&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It will now be available as a widget to open in the header. The down side is it does not maximize automatically. You need to click the arrow to open the attribute table and then you can expand it to the top. It will stay that way even if you close the widget so you can open it where you left off.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Stan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 06:32:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/move-attribute-table-to-side-of-page-rather-than/m-p/713063#M18738</guid>
      <dc:creator>StanMcShinsky</dc:creator>
      <dc:date>2021-12-12T06:32:48Z</dc:date>
    </item>
    <item>
      <title>Re: Move attribute table to side of page rather than bottom?</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/move-attribute-table-to-side-of-page-rather-than/m-p/713064#M18739</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is there a way to configure these settings in WAB in ArcGIS Online?&amp;nbsp; We're excited to use WAB on AGO because it simplifies our development stack so much.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Mar 2015 01:20:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/move-attribute-table-to-side-of-page-rather-than/m-p/713064#M18739</guid>
      <dc:creator>JasonKlrkland</dc:creator>
      <dc:date>2015-03-26T01:20:13Z</dc:date>
    </item>
    <item>
      <title>Re: Move attribute table to side of page rather than bottom?</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/move-attribute-table-to-side-of-page-rather-than/m-p/713065#M18740</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://community.esri.com/migrated-users/98734"&gt;Jason Klrkland&lt;/A&gt;​,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Unfortunately as of now you can not make these changes in AGOL. I believe one day we will be able to add custom widgets to AGOL. Cross your fingers and make a wish. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Stan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Mar 2015 01:50:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/move-attribute-table-to-side-of-page-rather-than/m-p/713065#M18740</guid>
      <dc:creator>StanMcShinsky</dc:creator>
      <dc:date>2015-03-26T01:50:10Z</dc:date>
    </item>
    <item>
      <title>Re: Move attribute table to side of page rather than bottom?</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/move-attribute-table-to-side-of-page-rather-than/m-p/713066#M18741</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No problem. AGOL appears to be evolving quickly and we're very excited about its potential.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To use WAB locally, does it require 10.3?&amp;nbsp; We're still on 10.1&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Mar 2015 01:55:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/move-attribute-table-to-side-of-page-rather-than/m-p/713066#M18741</guid>
      <dc:creator>JasonKlrkland</dc:creator>
      <dc:date>2015-03-26T01:55:32Z</dc:date>
    </item>
    <item>
      <title>Re: Move attribute table to side of page rather than bottom?</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/move-attribute-table-to-side-of-page-rather-than/m-p/713067#M18742</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Jason, it should work with 10.1 ArcGIS Server services...although I use 10.2.2 so haven't tested.&amp;nbsp; But, it doesn't actually depend on any desktop version, so you should be fine, especially if using AGOL services.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;to get started, check out&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/migration-blogpost/2294"&gt;Tips and Observations for getting Web AppBuilder -&amp;nbsp; Developer Edition Installed&lt;/A&gt;​&lt;/P&gt;&lt;P&gt;and &lt;A href="https://community.esri.com/migration-blogpost/2580"&gt;Web AppBuilder Developer Edition – Customization Resource List&lt;/A&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;&amp;lt; disclaimer...my blogs &amp;gt;&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Mar 2015 07:40:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/move-attribute-table-to-side-of-page-rather-than/m-p/713067#M18742</guid>
      <dc:creator>RebeccaStrauch__GISP</dc:creator>
      <dc:date>2015-03-26T07:40:38Z</dc:date>
    </item>
    <item>
      <title>Re: Move attribute table to side of page rather than bottom?</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/move-attribute-table-to-side-of-page-rather-than/m-p/713068#M18743</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://community.esri.com/migrated-users/98734" target="_blank"&gt;Jason Klrkland&lt;/A&gt;​,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Two more things to help out with this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Here is the code to have the attribute table widget open at start:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Root config.json make this change this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;"positionRelativeTo": "browser",&lt;/PRE&gt;&lt;P&gt;to this&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;"positionRelativeTo": "map",&lt;/PRE&gt;&lt;P&gt;add this&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;"openAtStart": "true",&lt;/PRE&gt;&lt;P&gt;together it will look like this&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;{
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "uri": "widgets/AttributeTable/Widget",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "positionRelativeTo": "map",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "version": "1.1",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "id": "widgets/AttributeTable/Widget_11",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "position": {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "left": 0,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "top": 0
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; },
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "name": "AttributeTable",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "openAtStart": "true",
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "label": "Attribute Table"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; },&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. Here is the code needed to have the table open when the widget is opened&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; \widgets\AttributeTable\Widget.json&lt;/P&gt;&lt;P&gt;replace&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;this._closeTable();&lt;/PRE&gt;&lt;P&gt;with this&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;this._openTable();&lt;/PRE&gt;&lt;P&gt;The place for this is varying on what version of WAB, but it is around line 200 in v1.0 or 122 in v1.1&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/migrated-users/3101" target="_blank"&gt;Robert Scheitlin, GISP&lt;/A&gt;​ posted this fix here &lt;A href="https://community.esri.com/message/483588" target="_blank"&gt;Re: Open Attribute Table Widget on start?&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;attrUtils.readLayerInfosObj(this.map).then(lang.hitch(this, function(layerInfosObj) {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; this.own(on(
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; layerInfosObj,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'layerInfosIsShowInMapChanged',
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; lang.hitch(this, this.onLayerInfosIsShowInMapChanged)));
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; this.own(layerInfosObj.on(
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'layerInfosChanged',
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; lang.hitch(this, this.onLayerInfosChanged)));
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; this._createBar();
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // this._closeTable();
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; this._openTable();
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }));&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now to just figure out how to maximize the table to use all the space.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 06:32:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/move-attribute-table-to-side-of-page-rather-than/m-p/713068#M18743</guid>
      <dc:creator>StanMcShinsky</dc:creator>
      <dc:date>2021-12-12T06:32:51Z</dc:date>
    </item>
  </channel>
</rss>

