<?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: LayerList widget expand on startup in ArcGIS Web AppBuilder Questions</title>
    <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/layerlist-widget-expand-on-startup/m-p/81948#M2330</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Natasha, since you have only one layer in this map service, you could try adding it to your map as an individual feature layer. &amp;nbsp;Then you would not see the root node. &amp;nbsp;Maybe you tried this already... feature layers do have some drawbacks that may or may not apply, but it could work.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 15 Dec 2016 19:10:05 GMT</pubDate>
    <dc:creator>RyanKelso</dc:creator>
    <dc:date>2016-12-15T19:10:05Z</dc:date>
    <item>
      <title>LayerList widget expand on startup</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/layerlist-widget-expand-on-startup/m-p/81937#M2319</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello, &lt;/P&gt;&lt;P&gt;I want to know if there is a way to expand RootLayer at the LayerList widget startup.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naty&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Dec 2016 14:16:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/layerlist-widget-expand-on-startup/m-p/81937#M2319</guid>
      <dc:creator>NatashaManzuiga</dc:creator>
      <dc:date>2016-12-12T14:16:05Z</dc:date>
    </item>
    <item>
      <title>Re: LayerList widget expand on startup</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/layerlist-widget-expand-on-startup/m-p/81938#M2320</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Naty,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;Sure add this code block to the end of the&amp;nbsp;_initOperations function in the LayerListView.js file:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;this&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;own&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;on&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="keyword token"&gt;this&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;operationsDropMenu &lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="string token"&gt;'onMenuClick'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; lang&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;hitch&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="keyword token"&gt;this&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;this&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;_onOperationsMenuItemClick&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="token function"&gt;setTimeout&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;lang&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;hitch&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="keyword token"&gt;this&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;function&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;this&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;foldOrUnfoldAllRootLayers&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="keyword token"&gt;false&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="number token"&gt;300&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2021 23:08:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/layerlist-widget-expand-on-startup/m-p/81938#M2320</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2021-12-10T23:08:23Z</dc:date>
    </item>
    <item>
      <title>Re: LayerList widget expand on startup</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/layerlist-widget-expand-on-startup/m-p/81939#M2321</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Robert! &lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;P&gt;And can I hide root node?&lt;/P&gt;&lt;P&gt;Naty&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Dec 2016 15:10:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/layerlist-widget-expand-on-startup/m-p/81939#M2321</guid>
      <dc:creator>NatashaManzuiga</dc:creator>
      <dc:date>2016-12-12T15:10:14Z</dc:date>
    </item>
    <item>
      <title>Re: LayerList widget expand on startup</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/layerlist-widget-expand-on-startup/m-p/81940#M2322</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not that I know of. Why would you want to? If the root was hidden how would you change it's visibility?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Dec 2016 15:23:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/layerlist-widget-expand-on-startup/m-p/81940#M2322</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2016-12-12T15:23:20Z</dc:date>
    </item>
    <item>
      <title>Re: LayerList widget expand on startup</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/layerlist-widget-expand-on-startup/m-p/81941#M2323</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV class=""&gt;&lt;DIV&gt;&lt;DIV class=""&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;SPAN lang="en"&gt;Its visibility must always be active and it's redundant to see it in LayerList.
Naty
&lt;/SPAN&gt;&lt;/PRE&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Dec 2021 23:08:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/layerlist-widget-expand-on-startup/m-p/81941#M2323</guid>
      <dc:creator>NatashaManzuiga</dc:creator>
      <dc:date>2021-12-10T23:08:26Z</dc:date>
    </item>
    <item>
      <title>Re: LayerList widget expand on startup</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/layerlist-widget-expand-on-startup/m-p/81942#M2324</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Naty,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;Maybe a screen shot would help explain better, because I do not understand.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Dec 2016 15:45:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/layerlist-widget-expand-on-startup/m-p/81942#M2324</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2016-12-12T15:45:46Z</dc:date>
    </item>
    <item>
      <title>Re: LayerList widget expand on startup</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/layerlist-widget-expand-on-startup/m-p/81943#M2325</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I just have only one operational layer...and I want to remove the root Level&lt;BR /&gt;&lt;IMG __jive_id="281711" alt="" class="image-1 jive-image j-img-original" src="https://community.esri.com/legacyfs/online/281711_Capture.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Dec 2016 15:51:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/layerlist-widget-expand-on-startup/m-p/81943#M2325</guid>
      <dc:creator>NatashaManzuiga</dc:creator>
      <dc:date>2016-12-12T15:51:42Z</dc:date>
    </item>
    <item>
      <title>Re: LayerList widget expand on startup</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/layerlist-widget-expand-on-startup/m-p/81944#M2326</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I had very much like to do same too&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Dec 2016 15:02:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/layerlist-widget-expand-on-startup/m-p/81944#M2326</guid>
      <dc:creator>deleted-user-CQZbjNeBXm49</dc:creator>
      <dc:date>2016-12-13T15:02:16Z</dc:date>
    </item>
    <item>
      <title>Re: LayerList widget expand on startup</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/layerlist-widget-expand-on-startup/m-p/81945#M2327</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Naty,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;OK, so you have a Map Service that only has one layer and you have the MapService name the same as the one layer that that service contains. Hmm. I will have to think about this,&amp;nbsp;as it is not common practice&amp;nbsp;for a GIS&amp;nbsp;data manager/publisher to have a scenario like that.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Dec 2016 15:10:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/layerlist-widget-expand-on-startup/m-p/81945#M2327</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2016-12-13T15:10:04Z</dc:date>
    </item>
    <item>
      <title>Re: LayerList widget expand on startup</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/layerlist-widget-expand-on-startup/m-p/81946#M2328</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Naty,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;Don't forget that your original question as already been answered.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Dec 2016 19:29:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/layerlist-widget-expand-on-startup/m-p/81946#M2328</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2016-12-13T19:29:57Z</dc:date>
    </item>
    <item>
      <title>Re: LayerList widget expand on startup</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/layerlist-widget-expand-on-startup/m-p/81947#M2329</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Me too!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Dec 2016 20:00:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/layerlist-widget-expand-on-startup/m-p/81947#M2329</guid>
      <dc:creator>TimHayes1</dc:creator>
      <dc:date>2016-12-13T20:00:54Z</dc:date>
    </item>
    <item>
      <title>Re: LayerList widget expand on startup</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/layerlist-widget-expand-on-startup/m-p/81948#M2330</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Natasha, since you have only one layer in this map service, you could try adding it to your map as an individual feature layer. &amp;nbsp;Then you would not see the root node. &amp;nbsp;Maybe you tried this already... feature layers do have some drawbacks that may or may not apply, but it could work.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Dec 2016 19:10:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/layerlist-widget-expand-on-startup/m-p/81948#M2330</guid>
      <dc:creator>RyanKelso</dc:creator>
      <dc:date>2016-12-15T19:10:05Z</dc:date>
    </item>
    <item>
      <title>Re: LayerList widget expand on startup</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/layerlist-widget-expand-on-startup/m-p/81949#M2331</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Robert, I tried implementing this but it's not working.&lt;/P&gt;&lt;P&gt;Is this snippet supposed to replace the existing 'onMenuClick' code or go after it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Existing last line:&lt;/P&gt;&lt;PRE class="language-javascript line-numbers"&gt;&lt;CODE&gt;&lt;SPAN class="keyword token"&gt;this&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;own&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;p&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="keyword token"&gt;this&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;operationsDropMenu&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"onMenuClick"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; m&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token function"&gt;hitch&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="keyword token"&gt;this&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;,&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;this&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;_onOperationsMenuItemClick&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;Warren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Feb 2018 20:19:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/layerlist-widget-expand-on-startup/m-p/81949#M2331</guid>
      <dc:creator>WarrenMedernach</dc:creator>
      <dc:date>2018-02-13T20:19:18Z</dc:date>
    </item>
    <item>
      <title>Re: LayerList widget expand on startup</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/layerlist-widget-expand-on-startup/m-p/81950#M2332</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Warren,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; It goes after it but based on the code you provided you are using minified code and that poses a problem. I am not sure it will work for you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Feb 2018 20:29:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/layerlist-widget-expand-on-startup/m-p/81950#M2332</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2018-02-13T20:29:47Z</dc:date>
    </item>
    <item>
      <title>Re: LayerList widget expand on startup</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/layerlist-widget-expand-on-startup/m-p/1003122#M19990</link>
      <description>&lt;P&gt;Hey &lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/1104"&gt;@RobertScheitlin__GISP&lt;/a&gt; - this is great! (sorry for bringing up an old post by the way). This really helped make our grouped layer lists more user friendly in our new app.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I did encounter one issue...admittedly, I didn't test this before the code change so I'll go back and verify... however after the change, if/when I choose to "Turn All Layers On", nothing happens. Similarly, if I opt to "Turn All Layers Off" only the parent / root parent turns off now. Have you experience this? We are using the Foldable theme in WABD 2.17. Thanks for any help you can provide!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 19 Nov 2020 19:59:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/layerlist-widget-expand-on-startup/m-p/1003122#M19990</guid>
      <dc:creator>RexRobichaux</dc:creator>
      <dc:date>2020-11-19T19:59:56Z</dc:date>
    </item>
    <item>
      <title>Re: LayerList widget expand on startup</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/layerlist-widget-expand-on-startup/m-p/1003149#M19991</link>
      <description>&lt;P&gt;Rex,&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;The "turn all layers on" menu option only turns parent layers on it does not alter sublayer visibility.&lt;/P&gt;</description>
      <pubDate>Thu, 19 Nov 2020 20:35:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/layerlist-widget-expand-on-startup/m-p/1003149#M19991</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2020-11-19T20:35:29Z</dc:date>
    </item>
  </channel>
</rss>

