<?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: Attribute pop-up with embedded URL in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/attribute-pop-up-with-embedded-url/m-p/277800#M25630</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;The iframe ... will effectively act like another 'embedded' browser i.e. everything in the 'external' web page (style, JS etc.) should function as it would if you simply pointed your browser at it.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;That's a good point - if you only want the data, you may not wish to see the header, page navigation, logos, etc.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Another option might be to request access to the raw data used on the embedded website. They must have used some values to derive the image/graph/whatever displayed on their site, so perhaps you can request that and build the image/graph/whatever yourself.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Still another option is to reverse-engineer their page to obtain just the component you need. Eg, if the page contains an image sourced from ../data/city_date_time.jpg you may be able to obtain the image directly. Be sure to check their license agreement to verify this is allowed.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Good luck,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Steve&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 02 Sep 2012 22:43:56 GMT</pubDate>
    <dc:creator>StephenLead</dc:creator>
    <dc:date>2012-09-02T22:43:56Z</dc:date>
    <item>
      <title>Attribute pop-up with embedded URL</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/attribute-pop-up-with-embedded-url/m-p/277797#M25627</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I'm designing a web map with a layer showing the locations of various weather and water quality sensors. Every sensor has, in its attribute table, a URL for a website that displays its current measurements and I was wondering if there is a way to set up the popup template so that, instead of displaying the attribute table of the point clicked, it would re-size to a determined width/length and display the contents of its respective URL. Is this a possibility and how would I go about doing this?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Aug 2012 16:15:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/attribute-pop-up-with-embedded-url/m-p/277797#M25627</guid>
      <dc:creator>PhilipElder</dc:creator>
      <dc:date>2012-08-30T16:15:44Z</dc:date>
    </item>
    <item>
      <title>Re: Attribute pop-up with embedded URL</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/attribute-pop-up-with-embedded-url/m-p/277798#M25628</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You could achieve this by inserting an &lt;/SPAN&gt;&lt;A href="http://www.w3schools.com/tags/tag_iframe.asp"&gt;iframe&lt;/A&gt;&lt;SPAN&gt; into the &lt;/SPAN&gt;&lt;A href="http://help.arcgis.com/en/webapi/javascript/arcgis/help/jsapi_start.htm#jsapi/infotemplate.htm#content"&gt;contents &lt;/A&gt;&lt;SPAN&gt;of the infoWindow.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Aug 2012 22:17:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/attribute-pop-up-with-embedded-url/m-p/277798#M25628</guid>
      <dc:creator>StephenLead</dc:creator>
      <dc:date>2012-08-30T22:17:49Z</dc:date>
    </item>
    <item>
      <title>Re: Attribute pop-up with embedded URL</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/attribute-pop-up-with-embedded-url/m-p/277799#M25629</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Or, if you don't like iframes, you could possibly use a &lt;/SPAN&gt;&lt;A href="https://dojotoolkit.org/reference-guide/1.7/dijit/layout/ContentPane.html"&gt;ContentPane&lt;/A&gt;&lt;SPAN&gt; but be aware of the limitations for pulling in a complete web page e.g. cross-domain (could proxy if you need to though).&amp;nbsp; The iframe solution that Steve gave will effectively act like another 'embedded' browser i.e. everything in the 'external' web page (style, JS etc.) should function as it would if you simply pointed your browser at it.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Aug 2012 07:34:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/attribute-pop-up-with-embedded-url/m-p/277799#M25629</guid>
      <dc:creator>__Rich_</dc:creator>
      <dc:date>2012-08-31T07:34:53Z</dc:date>
    </item>
    <item>
      <title>Re: Attribute pop-up with embedded URL</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/attribute-pop-up-with-embedded-url/m-p/277800#M25630</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;The iframe ... will effectively act like another 'embedded' browser i.e. everything in the 'external' web page (style, JS etc.) should function as it would if you simply pointed your browser at it.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;That's a good point - if you only want the data, you may not wish to see the header, page navigation, logos, etc.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Another option might be to request access to the raw data used on the embedded website. They must have used some values to derive the image/graph/whatever displayed on their site, so perhaps you can request that and build the image/graph/whatever yourself.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Still another option is to reverse-engineer their page to obtain just the component you need. Eg, if the page contains an image sourced from ../data/city_date_time.jpg you may be able to obtain the image directly. Be sure to check their license agreement to verify this is allowed.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Good luck,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Steve&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 02 Sep 2012 22:43:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/attribute-pop-up-with-embedded-url/m-p/277800#M25630</guid>
      <dc:creator>StephenLead</dc:creator>
      <dc:date>2012-09-02T22:43:56Z</dc:date>
    </item>
  </channel>
</rss>

