<?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: WAB 2.17 Launchpad Theme - how to modify widgets tray - resize, and shift in Web AppBuilder Custom Widgets Questions</title>
    <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/wab-2-17-launchpad-theme-how-to-modify-widgets/m-p/1020257#M14370</link>
    <description>&lt;P&gt;jCarlson, Thank you!&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;"right" indeed works. Only if I add "?locale=he" to the url, then "right" has no effect... maybe I'll inquire the code.&lt;/LI&gt;&lt;LI&gt;I have now 17 widgets in the tray, where I "remove" the last one in WidgetManager.js (place is reserved but it's empty). If I enlarge browser zoom, I can see concurrently less than 17, and Launchpad lets me use the tray arrows to shift the widgets in the tray window.&lt;/LI&gt;&lt;LI&gt;As for the "width" - I'll have to learn the relevant code.&lt;/LI&gt;&lt;/OL&gt;</description>
    <pubDate>Tue, 26 Jan 2021 22:28:20 GMT</pubDate>
    <dc:creator>MichaelLev</dc:creator>
    <dc:date>2021-01-26T22:28:20Z</dc:date>
    <item>
      <title>WAB 2.17 Launchpad Theme - how to modify widgets tray - resize, and shift</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/wab-2-17-launchpad-theme-how-to-modify-widgets/m-p/1020038#M14364</link>
      <description>&lt;P&gt;In Launchpad Theme, currently, widgets tray (at bottom of screen) is centered. I want to move it a little to the right so it will be more far away from Coordinate widget. How to do it?&lt;/P&gt;&lt;P&gt;In addition, can I "resize" it so that it will hold a 4-6 more widgets?&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jan 2021 14:59:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/wab-2-17-launchpad-theme-how-to-modify-widgets/m-p/1020038#M14364</guid>
      <dc:creator>MichaelLev</dc:creator>
      <dc:date>2021-01-26T14:59:49Z</dc:date>
    </item>
    <item>
      <title>Re: WAB 2.17 Launchpad Theme - how to modify widgets tray - resize, and shift</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/wab-2-17-launchpad-theme-how-to-modify-widgets/m-p/1020061#M14365</link>
      <description>&lt;P&gt;Tweaks like that need to be done with &lt;A href="https://developers.arcgis.com/web-appbuilder/guide/getstarted.htm" target="_self"&gt;WAB Developer&lt;/A&gt;. You can definitely make the adjustments you mention by building an app with the Developer version (you can even import an existing app) and then making changes to the JSON to add padding and additional widget placeholders.&lt;/P&gt;&lt;P&gt;You could also accomplish something like that using Experience Builder, even the off-the-shelf version, but EB may not have all the widgets you need.&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jan 2021 15:42:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/wab-2-17-launchpad-theme-how-to-modify-widgets/m-p/1020061#M14365</guid>
      <dc:creator>jcarlson</dc:creator>
      <dc:date>2021-01-26T15:42:22Z</dc:date>
    </item>
    <item>
      <title>Re: WAB 2.17 Launchpad Theme - how to modify widgets tray - resize, and shift</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/wab-2-17-launchpad-theme-how-to-modify-widgets/m-p/1020084#M14366</link>
      <description>&lt;P&gt;jCarlson, thanks for trying to direct me. I'm developing custom widgets using the WAB 2.17 developer edition. I know that the Launchpad Theme widgets tray (at bottom of screen) is not configured in the app main config file. It should be somewhere in the code. Maybe in the specific code of Launcpad Theme, or maybe in the css?&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jan 2021 16:22:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/wab-2-17-launchpad-theme-how-to-modify-widgets/m-p/1020084#M14366</guid>
      <dc:creator>MichaelLev</dc:creator>
      <dc:date>2021-01-26T16:22:19Z</dc:date>
    </item>
    <item>
      <title>Re: WAB 2.17 Launchpad Theme - how to modify widgets tray - resize, and shift</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/wab-2-17-launchpad-theme-how-to-modify-widgets/m-p/1020101#M14367</link>
      <description>&lt;P&gt;Gotcha!&lt;/P&gt;&lt;P&gt;So, go into the &lt;EM&gt;config.json&lt;/EM&gt; file in the root of the viewer files. You should see the following&amp;nbsp;&lt;STRONG&gt;AnchorBarController&lt;/STRONG&gt; object:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;  "widgets": [ 
     {
        "uri": "themes/LaunchpadTheme/widgets/AnchorBarController/Widget",
        "position": {
          "bottom": 10,
          "height": 40,
          "relativeTo": "map",
          "zIndex": 0
        }
      ...
  ]&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;Adjust the position values here, and the launchpad bar will move. Here's mine, with the values set a bit ridiculously at "height": 300, "right": 200.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jCarlson_0-1611679077610.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/4579i86D88223AFAD2B83/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jCarlson_0-1611679077610.png" alt="jCarlson_0-1611679077610.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jan 2021 16:38:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/wab-2-17-launchpad-theme-how-to-modify-widgets/m-p/1020101#M14367</guid>
      <dc:creator>jcarlson</dc:creator>
      <dc:date>2021-01-26T16:38:15Z</dc:date>
    </item>
    <item>
      <title>Re: WAB 2.17 Launchpad Theme - how to modify widgets tray - resize, and shift</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/wab-2-17-launchpad-theme-how-to-modify-widgets/m-p/1020109#M14368</link>
      <description>&lt;P&gt;jCarlson, you are right and I was wrong by thinking it's not in the main config, but, I don't want to move it higher... I want to move it more to the rightside (currently it's centered), and I want to make it wider so that I will be able to see more wdgets concurrently.&lt;/P&gt;&lt;P&gt;By the way, I work mainly in 3D.&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jan 2021 16:48:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/wab-2-17-launchpad-theme-how-to-modify-widgets/m-p/1020109#M14368</guid>
      <dc:creator>MichaelLev</dc:creator>
      <dc:date>2021-01-26T16:48:47Z</dc:date>
    </item>
    <item>
      <title>Re: WAB 2.17 Launchpad Theme - how to modify widgets tray - resize, and shift</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/wab-2-17-launchpad-theme-how-to-modify-widgets/m-p/1020115#M14369</link>
      <description>&lt;P&gt;Right, so maybe try changing the "right" property under "position" to various values and see how the app performs with the bar in that position.&lt;/P&gt;&lt;P&gt;As for the width, that's actually handled by the &lt;EM&gt;widgetPool&lt;/EM&gt; object, and that &lt;EM&gt;is &lt;/EM&gt;controlled by the theme's code. I don't have much experience making and modifying custom themes, but you'll want to make your own theme so as not to modify any other apps that reference the "Launchpad" theme files.&lt;/P&gt;&lt;P&gt;How many widgets do you have added currently? I was able to add quite a lot.&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jan 2021 16:55:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/wab-2-17-launchpad-theme-how-to-modify-widgets/m-p/1020115#M14369</guid>
      <dc:creator>jcarlson</dc:creator>
      <dc:date>2021-01-26T16:55:40Z</dc:date>
    </item>
    <item>
      <title>Re: WAB 2.17 Launchpad Theme - how to modify widgets tray - resize, and shift</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/wab-2-17-launchpad-theme-how-to-modify-widgets/m-p/1020257#M14370</link>
      <description>&lt;P&gt;jCarlson, Thank you!&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;"right" indeed works. Only if I add "?locale=he" to the url, then "right" has no effect... maybe I'll inquire the code.&lt;/LI&gt;&lt;LI&gt;I have now 17 widgets in the tray, where I "remove" the last one in WidgetManager.js (place is reserved but it's empty). If I enlarge browser zoom, I can see concurrently less than 17, and Launchpad lets me use the tray arrows to shift the widgets in the tray window.&lt;/LI&gt;&lt;LI&gt;As for the "width" - I'll have to learn the relevant code.&lt;/LI&gt;&lt;/OL&gt;</description>
      <pubDate>Tue, 26 Jan 2021 22:28:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/wab-2-17-launchpad-theme-how-to-modify-widgets/m-p/1020257#M14370</guid>
      <dc:creator>MichaelLev</dc:creator>
      <dc:date>2021-01-26T22:28:20Z</dc:date>
    </item>
  </channel>
</rss>

