<?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: Multiple widgets in one folder. in Web AppBuilder Custom Widgets Questions</title>
    <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/multiple-widgets-in-one-folder/m-p/864061#M12102</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Robert,&lt;/P&gt;&lt;P&gt;Is there a way to add scrolling to these panels?&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Terry&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 19 Nov 2015 15:40:29 GMT</pubDate>
    <dc:creator>TerryGustafson</dc:creator>
    <dc:date>2015-11-19T15:40:29Z</dc:date>
    <item>
      <title>Multiple widgets in one folder.</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/multiple-widgets-in-one-folder/m-p/864059#M12100</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I've looked around but have not found an answer yet.&amp;nbsp; So I have a collection of widgets in one folder.&amp;nbsp; I'm wondering if there is a way to set focus on the first widget and on lt have that one expanded when the folder is opened. So from the attached example my legend is the first widget.&amp;nbsp; I would like that one expanded but the others collapsed.&amp;nbsp; :Is this possible? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Sep 2015 18:47:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/multiple-widgets-in-one-folder/m-p/864059#M12100</guid>
      <dc:creator>TerryGustafson</dc:creator>
      <dc:date>2015-09-10T18:47:57Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple widgets in one folder.</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/multiple-widgets-in-one-folder/m-p/864060#M12101</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Terry,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; There is nothing configurable for this but with some minor code changes you can achieve this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; 1. Open your apps main config.json and find your "groups" array under the group you will find "widgets" array add "folded": true to the widgets you want folded at startup.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; 2. Open [install dir]\server\apps\[app num]\themes\FoldableTheme\panels\FoldablePanel\Panel.js and find the createFrame function. Add modify this block to add line 4.&lt;/P&gt;&lt;P&gt;&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; frame = new FoldableWidgetFrame({
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; label: widgetConfig.label,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; widgetManager: this.widgetManager,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; folded: widgetConfig.folded
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; });&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 10:43:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/multiple-widgets-in-one-folder/m-p/864060#M12101</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2021-12-12T10:43:54Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple widgets in one folder.</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/multiple-widgets-in-one-folder/m-p/864061#M12102</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Robert,&lt;/P&gt;&lt;P&gt;Is there a way to add scrolling to these panels?&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Terry&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Nov 2015 15:40:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/multiple-widgets-in-one-folder/m-p/864061#M12102</guid>
      <dc:creator>TerryGustafson</dc:creator>
      <dc:date>2015-11-19T15:40:29Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple widgets in one folder.</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/multiple-widgets-in-one-folder/m-p/864062#M12103</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Terry,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; No the panel would have to be redesigned/recoded for this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Nov 2015 17:27:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/multiple-widgets-in-one-folder/m-p/864062#M12103</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2015-11-19T17:27:02Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple widgets in one folder.</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/multiple-widgets-in-one-folder/m-p/864063#M12104</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;One other question I had was when the map properties folder containing all the widgets is open the first widget which is the Legend is open which is perfect.&amp;nbsp; The problem is when I click on the arrow and minimize the legend and open another widget like Layer List I can't minimize layer list it until I open another widget.&amp;nbsp; Is there a setting for that?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Nov 2015 18:08:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/multiple-widgets-in-one-folder/m-p/864063#M12104</guid>
      <dc:creator>TerryGustafson</dc:creator>
      <dc:date>2015-11-19T18:08:11Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple widgets in one folder.</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/multiple-widgets-in-one-folder/m-p/864064#M12105</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Nope sounds like a tech support call.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Nov 2015 18:16:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/multiple-widgets-in-one-folder/m-p/864064#M12105</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2015-11-19T18:16:50Z</dc:date>
    </item>
  </channel>
</rss>

