<?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: How to include a link on the WAB icon in ArcGIS Web AppBuilder Questions</title>
    <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/how-to-include-a-link-on-the-wab-icon/m-p/653285#M17381</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How do i get this to open in a new tab, and is it possible to add a tooltip?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 02 Oct 2015 13:47:24 GMT</pubDate>
    <dc:creator>JasonStanton__GISP</dc:creator>
    <dc:date>2015-10-02T13:47:24Z</dc:date>
    <item>
      <title>How to include a link on the WAB icon</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/how-to-include-a-link-on-the-wab-icon/m-p/653283#M17379</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In the Attributes section of an application, you can set the app's icon. You can also add a link - this is placed to the right of the subtitle text:&lt;/P&gt;&lt;P&gt;&lt;IMG alt="WAB link.JPG" class="jive-image image-1" src="/legacyfs/online/55269_WAB link.JPG" style="width: 620px; height: 288px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I add a link to the icon itself, so that clicking on the three coloured blocks navigates somewhere?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The icon seems to be loaded dynamically, into this div:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;lt;div class="header-section jimu-float-leading" data-dojo-attach-point="headerNode"&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;img class="logo jimu-float-leading jimu-leading-margin1" data-dojo-attach-point="logoNode" src="images\logo.png" style="height: 30px; min-width: 30px; margin-top: 5px; cursor: default;"&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier; font-size: 8pt;"&gt;&amp;lt;/div&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Which script builds this section of the UI? It should be possible to wrap the whole thing in an &amp;lt;a href&amp;gt; tag.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;P&gt;Steve&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Jan 2015 04:45:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/how-to-include-a-link-on-the-wab-icon/m-p/653283#M17379</guid>
      <dc:creator>StephenLead</dc:creator>
      <dc:date>2015-01-28T04:45:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to include a link on the WAB icon</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/how-to-include-a-link-on-the-wab-icon/m-p/653284#M17380</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Some digging shows that the script which builds the header, including the logo, is found at \themes\&amp;lt;theme name&amp;gt;\widgets\HeaderController\Widget.js.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;These edits seem to do the trick&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- edit the application's main config.js file to include a new property logoLink:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;EM&gt;&lt;SPAN&gt;"logoLink": "&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://www.google.com.au/" rel="nofollow" target="_blank"&gt;http://www.google.com.au&lt;/A&gt;&lt;SPAN&gt;",&lt;/SPAN&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- add this to the \themes\&amp;lt;theme name&amp;gt;\widgets\HeaderController\Widget.js script around line 92:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;EM&gt;html.setAttr(&lt;/EM&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;EM&gt;&amp;nbsp; this.logoLink,&lt;/EM&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;EM&gt;&amp;nbsp; 'href',&lt;/EM&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;EM&gt;&amp;nbsp; this.appConfig.logoLink ? this.appConfig.logoLink : "#"&lt;/EM&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;EM&gt;);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- add the template &amp;lt;a&amp;gt; code into&amp;nbsp; \themes\&amp;lt;theme name&amp;gt;\widgets\HeaderController\Widget.html around the logo image:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;EM&gt;&amp;lt;a data-dojo-attach-point="logoLink"&amp;gt;&lt;/EM&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;EM&gt;&amp;nbsp; &amp;lt;img class="logo jimu-float-leading jimu-leading-margin1" data-dojo-attach-point="logoNode"&amp;gt;&lt;/EM&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;EM&gt;&amp;lt;/a&amp;gt;&lt;/EM&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;/P&gt;&lt;P&gt;It would be nice if someone could explain how to build the logoLink property from the main UI, rather than needing to hack into the config.js file manually.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Jan 2015 03:12:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/how-to-include-a-link-on-the-wab-icon/m-p/653284#M17380</guid>
      <dc:creator>StephenLead</dc:creator>
      <dc:date>2015-01-29T03:12:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to include a link on the WAB icon</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/how-to-include-a-link-on-the-wab-icon/m-p/653285#M17381</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How do i get this to open in a new tab, and is it possible to add a tooltip?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Oct 2015 13:47:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/how-to-include-a-link-on-the-wab-icon/m-p/653285#M17381</guid>
      <dc:creator>JasonStanton__GISP</dc:creator>
      <dc:date>2015-10-02T13:47:24Z</dc:date>
    </item>
  </channel>
</rss>

