<?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: Add a button in WAB that opens a webpage or URL? in Web AppBuilder Custom Widgets Questions</title>
    <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/add-a-button-in-wab-that-opens-a-webpage-or-url/m-p/799794#M5052</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P class=""&gt;John,&lt;/P&gt;&lt;P class=""&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P class=""&gt;&amp;nbsp; Don't forget to mark this thread as answered by clicking on the "correct answer" link on the reply that answered your question.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 15 Aug 2016 17:39:39 GMT</pubDate>
    <dc:creator>RobertScheitlin__GISP</dc:creator>
    <dc:date>2016-08-15T17:39:39Z</dc:date>
    <item>
      <title>Add a button in WAB that opens a webpage or URL?</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/add-a-button-in-wab-that-opens-a-webpage-or-url/m-p/799789#M5047</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: arial, helvetica, 'helvetica neue', verdana, sans-serif; font-size: 14px;"&gt;Is there a way to add a button (similar to a widget button or icon) to WAB (Developer Edition) that will simply open a webpage or URL?&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 19:24:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/add-a-button-in-wab-that-opens-a-webpage-or-url/m-p/799789#M5047</guid>
      <dc:creator>JohnHarney</dc:creator>
      <dc:date>2016-06-16T19:24:05Z</dc:date>
    </item>
    <item>
      <title>Re: Add a button in WAB that opens a webpage or URL?</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/add-a-button-in-wab-that-opens-a-webpage-or-url/m-p/799790#M5048</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could configure the about widget with a url inside of it?&amp;nbsp; That would be a workaround.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 19:40:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/add-a-button-in-wab-that-opens-a-webpage-or-url/m-p/799790#M5048</guid>
      <dc:creator>LeoLadefian5</dc:creator>
      <dc:date>2016-06-16T19:40:15Z</dc:date>
    </item>
    <item>
      <title>Re: Add a button in WAB that opens a webpage or URL?</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/add-a-button-in-wab-that-opens-a-webpage-or-url/m-p/799791#M5049</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I wasn't able to get a button that sat in the widget bar to do what you're describing.&amp;nbsp; I wanted to open a help document from there rather than the links bar or the about page.&amp;nbsp; I built a widget that on it's open event opened a new window with the url I wanted, then the widget panel closed itself.&amp;nbsp; You can occasionally see it momentarily if you're watching for it, but it give the behaviour I was looking for.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;onOpen: function() {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; window.open(this.config.hyperlink);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var theWidgetID = this.id;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; require(["jimu/PanelManager"], function(PanelManager) {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; console.log(theWidgetID);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var pm = PanelManager.getInstance();&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; PanelManager.getInstance().closePanel(theWidgetID + "_panel");&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; }&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jun 2016 13:34:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/add-a-button-in-wab-that-opens-a-webpage-or-url/m-p/799791#M5049</guid>
      <dc:creator>TimDine</dc:creator>
      <dc:date>2016-06-17T13:34:08Z</dc:date>
    </item>
    <item>
      <title>Re: Add a button in WAB that opens a webpage or URL?</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/add-a-button-in-wab-that-opens-a-webpage-or-url/m-p/799792#M5050</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; I have created a widget for this now:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/docs/DOC-8591"&gt;Url Button Widget Version 2.1 - 07/29/2016&lt;/A&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Jul 2016 16:29:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/add-a-button-in-wab-that-opens-a-webpage-or-url/m-p/799792#M5050</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2016-07-29T16:29:02Z</dc:date>
    </item>
    <item>
      <title>Re: Add a button in WAB that opens a webpage or URL?</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/add-a-button-in-wab-that-opens-a-webpage-or-url/m-p/799793#M5051</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Robert. That's exactly what we were looking for!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Aug 2016 17:27:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/add-a-button-in-wab-that-opens-a-webpage-or-url/m-p/799793#M5051</guid>
      <dc:creator>JohnHarney</dc:creator>
      <dc:date>2016-08-15T17:27:15Z</dc:date>
    </item>
    <item>
      <title>Re: Add a button in WAB that opens a webpage or URL?</title>
      <link>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/add-a-button-in-wab-that-opens-a-webpage-or-url/m-p/799794#M5052</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P class=""&gt;John,&lt;/P&gt;&lt;P class=""&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P class=""&gt;&amp;nbsp; Don't forget to mark this thread as answered by clicking on the "correct answer" link on the reply that answered your question.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Aug 2016 17:39:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/web-appbuilder-custom-widgets-questions/add-a-button-in-wab-that-opens-a-webpage-or-url/m-p/799794#M5052</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2016-08-15T17:39:39Z</dc:date>
    </item>
  </channel>
</rss>

