<?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: Open widget at startup in ArcGIS Web AppBuilder Questions</title>
    <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/open-widget-at-startup/m-p/561545#M14951</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Neither bug report has been resolved.&amp;nbsp; I worked around it by putting the widget pool widget I wanted to open at startup as the first widget in the widget pool.&amp;nbsp; Later, I stopped using the openAtStart config parameter in favor of a widget I wrote that is an onScreen widget and can open as may widgets at startup as I want.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 19 Feb 2015 15:13:52 GMT</pubDate>
    <dc:creator>LarryStout</dc:creator>
    <dc:date>2015-02-19T15:13:52Z</dc:date>
    <item>
      <title>Open widget at startup</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/open-widget-at-startup/m-p/561541#M14947</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;Is far as I know (I am not a developer), it is not possible to send extent x,y in a url parameter. Is there any way to have the bookmark widget open on application startup?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Sep 2014 12:39:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/open-widget-at-startup/m-p/561541#M14947</guid>
      <dc:creator>KlasÖstergren</dc:creator>
      <dc:date>2014-09-23T12:39:05Z</dc:date>
    </item>
    <item>
      <title>Re: Open widget at startup</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/open-widget-at-startup/m-p/561542#M14948</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Klas,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; For the x,y in the url this is &lt;STRONG&gt;NOT&lt;/STRONG&gt; built into the WAB Stem App. But here is a link to where I detail what has to be changed to make this work:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" href="https://community.esri.com/message/399090#399090" title="https://community.esri.com/message/399090#399090"&gt;https://community.esri.com/message/399090#399090&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As far as making the bookmark widget open at startup that is as simple as editing the config.json to include&lt;/P&gt;&lt;PRE __default_attr="javascript" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_14114822216406931" jivemacro_uid="_14114822216406931"&gt;
&lt;P&gt;"openAtStart": true&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt; so the widget element look like this:&lt;/P&gt;&lt;PRE __default_attr="javascript" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_14114822824426078 jive_text_macro" jivemacro_uid="_14114822824426078"&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "position": {&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "left": 55,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "top": 45,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "width": 400,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "height": 410&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; },&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "placeholderIndex": 1,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "id": "_5",&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "positionRelativeTo": "map",&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "name": "Bookmark",&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "label": "Bookmark_2",&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "isThemeWidget": false,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "uri": "widgets/Bookmark/Widget",&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; "openAtStart": true&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; },&lt;/P&gt;
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Sep 2014 14:24:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/open-widget-at-startup/m-p/561542#M14948</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2014-09-23T14:24:54Z</dc:date>
    </item>
    <item>
      <title>Re: Open widget at startup</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/open-widget-at-startup/m-p/561543#M14949</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For widgets in the Widget Pool, there is a bug with the openAtStart behavior.&amp;nbsp; I logged it as WebApp-001095 and a few hours ago someone else logged it as WebApp-001126.&amp;nbsp; You can see them &lt;A href="https://betacommunity.esri.com/project/feedback/track/list.html?cap=56748504C94543EAA126319325FD2EC4&amp;amp;f={A8AF9371-88A5-4664-AAE2-AC6FE4241795}&amp;amp;sb=4&amp;amp;so=1"&gt;here&lt;/A&gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Oct 2014 17:53:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/open-widget-at-startup/m-p/561543#M14949</guid>
      <dc:creator>LarryStout</dc:creator>
      <dc:date>2014-10-02T17:53:11Z</dc:date>
    </item>
    <item>
      <title>Re: Open widget at startup</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/open-widget-at-startup/m-p/561544#M14950</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Was this bug ever resolved? The page in the link you provided is unavailable. If you could let me know that would be great, thank you! &lt;IMG src="https://community.esri.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Feb 2015 14:51:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/open-widget-at-startup/m-p/561544#M14950</guid>
      <dc:creator>TaraEvoy</dc:creator>
      <dc:date>2015-02-19T14:51:29Z</dc:date>
    </item>
    <item>
      <title>Re: Open widget at startup</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/open-widget-at-startup/m-p/561545#M14951</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Neither bug report has been resolved.&amp;nbsp; I worked around it by putting the widget pool widget I wanted to open at startup as the first widget in the widget pool.&amp;nbsp; Later, I stopped using the openAtStart config parameter in favor of a widget I wrote that is an onScreen widget and can open as may widgets at startup as I want.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Feb 2015 15:13:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/open-widget-at-startup/m-p/561545#M14951</guid>
      <dc:creator>LarryStout</dc:creator>
      <dc:date>2015-02-19T15:13:52Z</dc:date>
    </item>
    <item>
      <title>Re: Open widget at startup</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/open-widget-at-startup/m-p/561546#M14952</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your reply Larry! Good to know its not just me. Although I cannot get open at startup param to work for me no matter where the app it resides in the widget pool for any widget (even a basic built in widget like the basemaps). Did you do anything else additionally to finally get it to work?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Feb 2015 15:53:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/open-widget-at-startup/m-p/561546#M14952</guid>
      <dc:creator>TaraEvoy</dc:creator>
      <dc:date>2015-02-19T15:53:57Z</dc:date>
    </item>
    <item>
      <title>Re: Open widget at startup</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/open-widget-at-startup/m-p/561547#M14953</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No, as far as I know, Robert's answer still works.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Feb 2015 15:56:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/open-widget-at-startup/m-p/561547#M14953</guid>
      <dc:creator>LarryStout</dc:creator>
      <dc:date>2015-02-19T15:56:41Z</dc:date>
    </item>
    <item>
      <title>Re: Open widget at startup</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/open-widget-at-startup/m-p/561548#M14954</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How about using &lt;SPAN class="string" style="color: blue; font-size: 9pt !important; font-style: inherit; font-weight: inherit;"&gt;"openAtStart"&lt;/SPAN&gt;&lt;SPAN style="color: black; font-size: 9pt !important; font-style: inherit; font-weight: inherit;"&gt;: &lt;/SPAN&gt;&lt;SPAN class="keyword" style="color: #006699; font-size: 9pt !important; font-style: inherit; font-weight: inherit;"&gt;true&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-weight: inherit; font-size: 9pt !important; font-style: inherit;"&gt;&amp;nbsp; for widgets in the side control panel?&amp;nbsp; I can only get this to work for off-panel widgets.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;&lt;SPAN style="font-size: 9pt !important; font-style: inherit; font-weight: inherit;"&gt;I &lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; line-height: 18px;"&gt;would&lt;/SPAN&gt;&lt;SPAN style="font-size: 9pt !important; font-style: inherit; font-weight: inherit;"&gt; like the Layer List widget in my sidebar to be open when app starts-- to create the typical map and toc look.&amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Apr 2015 18:11:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/open-widget-at-startup/m-p/561548#M14954</guid>
      <dc:creator>GregoryMeyer1</dc:creator>
      <dc:date>2015-04-16T18:11:40Z</dc:date>
    </item>
    <item>
      <title>Re: Open widget at startup</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/open-widget-at-startup/m-p/561549#M14955</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Gregory,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; This involves a bit of code. See these threads&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/thread/131834"&gt;Load In-Panel Widget onStart of the application&lt;/A&gt; &lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/thread/114900"&gt;How to programmatically open a widgetOnScreen widget&lt;/A&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Apr 2015 18:23:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/open-widget-at-startup/m-p/561549#M14955</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2015-04-16T18:23:31Z</dc:date>
    </item>
  </channel>
</rss>

