<?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 Tooltip for Datagrid Column Header in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/tooltip-for-datagrid-column-header/m-p/461526#M42650</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Greetings!&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I used the example here - &lt;/SPAN&gt;&lt;A href="http://blogs.esri.com/Dev/blogs/arcgisserver/archive/2009/12/14/Add-a-Zoom-button-to-a-DataGrid.aspx"&gt;http://blogs.esri.com/Dev/blogs/arcgisserver/archive/2009/12/14/Add-a-Zoom-button-to-a-DataGrid.aspx&lt;/A&gt;&lt;SPAN&gt; - to set up a datagrid to display my results.&amp;nbsp; This works great, but I would like to change the tooltip that displays when you hover over the column name.&amp;nbsp; In the example, when you hover over the magnifying glass in the column header, a plus sign (+) appears.&amp;nbsp; I would like to change this to something more meaningful - like "Zoom."&amp;nbsp; I have searched and searched, but can not find where this is set.&amp;nbsp; Does anyone know how I can change it?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks!&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;~Stephanie :confused:&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 28 Oct 2010 11:31:33 GMT</pubDate>
    <dc:creator>StephanieWidas</dc:creator>
    <dc:date>2010-10-28T11:31:33Z</dc:date>
    <item>
      <title>Tooltip for Datagrid Column Header</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/tooltip-for-datagrid-column-header/m-p/461526#M42650</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Greetings!&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I used the example here - &lt;/SPAN&gt;&lt;A href="http://blogs.esri.com/Dev/blogs/arcgisserver/archive/2009/12/14/Add-a-Zoom-button-to-a-DataGrid.aspx"&gt;http://blogs.esri.com/Dev/blogs/arcgisserver/archive/2009/12/14/Add-a-Zoom-button-to-a-DataGrid.aspx&lt;/A&gt;&lt;SPAN&gt; - to set up a datagrid to display my results.&amp;nbsp; This works great, but I would like to change the tooltip that displays when you hover over the column name.&amp;nbsp; In the example, when you hover over the magnifying glass in the column header, a plus sign (+) appears.&amp;nbsp; I would like to change this to something more meaningful - like "Zoom."&amp;nbsp; I have searched and searched, but can not find where this is set.&amp;nbsp; Does anyone know how I can change it?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks!&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;~Stephanie :confused:&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Oct 2010 11:31:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/tooltip-for-datagrid-column-header/m-p/461526#M42650</guid>
      <dc:creator>StephanieWidas</dc:creator>
      <dc:date>2010-10-28T11:31:33Z</dc:date>
    </item>
    <item>
      <title>Re: Tooltip for Datagrid Column Header</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/tooltip-for-datagrid-column-header/m-p/461527#M42651</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;well, in the posted example, if you look at the source code, down in the HTML section look at your table tag. specifically this line:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;th field="ObjectID" formatter="makeZoomButton" width="25px"&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;img alt="+" src="zoom.png"/&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/th&amp;gt;
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;the &amp;lt;img&amp;gt; tag... change the '+' in the alt attribute to 'zoom' and that should do it.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 20:31:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/tooltip-for-datagrid-column-header/m-p/461527#M42651</guid>
      <dc:creator>timgogl</dc:creator>
      <dc:date>2021-12-11T20:31:13Z</dc:date>
    </item>
    <item>
      <title>Re: Tooltip for Datagrid Column Header</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/tooltip-for-datagrid-column-header/m-p/461528#M42652</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;YES!! That was it.&amp;nbsp; I knew it had to be something simple.&amp;nbsp; One of the drawbacks of copying and pasting code from examples...I didn't even see that in there.&amp;nbsp; Thank you!!!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Oct 2010 18:22:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/tooltip-for-datagrid-column-header/m-p/461528#M42652</guid>
      <dc:creator>StephanieWidas</dc:creator>
      <dc:date>2010-10-28T18:22:13Z</dc:date>
    </item>
  </channel>
</rss>

