<?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 customize the identify attribute to make a clickable URL? in ArcGIS API for Silverlight Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/how-to-customize-the-identify-attribute-to-make-a/m-p/534713#M13713</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks for your kindly reply, both Morten Nielsen and Scott Friedrich. I will try that.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Best,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Wei&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 01 Jun 2010 14:56:32 GMT</pubDate>
    <dc:creator>weiliang</dc:creator>
    <dc:date>2010-06-01T14:56:32Z</dc:date>
    <item>
      <title>How to customize the identify attribute to make a clickable URL?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/how-to-customize-the-identify-attribute-to-make-a/m-p/534710#M13710</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;There is an attribute in one of our map layers that is actually a URL. How can I customize to make this attribute clickable and can navigate to this URL.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for your help!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Wei&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 May 2010 17:45:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/how-to-customize-the-identify-attribute-to-make-a/m-p/534710#M13710</guid>
      <dc:creator>weiliang</dc:creator>
      <dc:date>2010-05-27T17:45:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to customize the identify attribute to make a clickable URL?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/how-to-customize-the-identify-attribute-to-make-a/m-p/534711#M13711</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Assuming you are using the DataGrid control to display the attributes, you can probably use DataGridTemplateColumn and bind the NavigateURL to your attribute.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Here is an example of using DataGridTemplateColumn :&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://blogs.msdn.com/b/scmorris/archive/2008/03/27/defining-columns-for-a-silverlight-datagrid.aspx"&gt;http://blogs.msdn.com/b/scmorris/archive/2008/03/27/defining-columns-for-a-silverlight-datagrid.aspx&lt;/A&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Hope this helps,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Scott&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 May 2010 16:14:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/how-to-customize-the-identify-attribute-to-make-a/m-p/534711#M13711</guid>
      <dc:creator>ScottFriedrich</dc:creator>
      <dc:date>2010-05-28T16:14:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to customize the identify attribute to make a clickable URL?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/how-to-customize-the-identify-attribute-to-make-a/m-p/534712#M13712</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Put a hyperlink in your maptip (assuming you have an attribute called "urlString" thats a string with the url:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;lt;esri:GraphicsLayer&amp;gt;
&amp;nbsp; &amp;lt;esri:GraphicsLayer.MapTip&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Border Background="White" Padding="5" esri:GraphicsLayer.MapTipHideDelay="0:0:0.5"&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;HyperlinkButton Content="Click Here" NavigateUri="{Binding [urlString]}" /&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/Border&amp;gt;
&amp;nbsp; &amp;lt;/esri:GraphicsLayer.MapTip&amp;gt;
&amp;lt;/esri:GraphicsLayer&amp;gt;
&lt;/PRE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Note binding expression will only work with Silverlight 4. If you are still using SL3, you will need to use the dictionary converter.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 23:13:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/how-to-customize-the-identify-attribute-to-make-a/m-p/534712#M13712</guid>
      <dc:creator>dotMorten_esri</dc:creator>
      <dc:date>2021-12-11T23:13:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to customize the identify attribute to make a clickable URL?</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/how-to-customize-the-identify-attribute-to-make-a/m-p/534713#M13713</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks for your kindly reply, both Morten Nielsen and Scott Friedrich. I will try that.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Best,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Wei&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Jun 2010 14:56:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/how-to-customize-the-identify-attribute-to-make-a/m-p/534713#M13713</guid>
      <dc:creator>weiliang</dc:creator>
      <dc:date>2010-06-01T14:56:32Z</dc:date>
    </item>
  </channel>
</rss>

