<?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: Disable Tooltip on Search Component in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/disable-tooltip-on-search-component/m-p/1703497#M88464</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/83360"&gt;@SebastianKrings&lt;/a&gt;&amp;nbsp;and&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/327152"&gt;@MatthewDriscoll&lt;/a&gt;. Thanks for posting your questions and thoughts here. There are a couple things to address.&lt;/P&gt;&lt;P&gt;1) &lt;STRONG&gt;Disabling tooltips&lt;/STRONG&gt;. We like tooltips because they can enhance the overall user experience, and are an important component of web accessibility. In general, the tooltip story for our components is consistent, so this is not just about Search. To help us better understand, why do you want to disable a tooltip? Would you want to also be able to edit/customize or add a tooltip?&lt;/P&gt;&lt;P&gt;2) &lt;STRONG&gt;Samples in component docs&lt;/STRONG&gt;. Our component doc is different from our widget doc, and our component doc is still being updated and refined. We appreciate your patience. This will improve. Also, have you seen the updated Samples page? It is super easy to filter and search for relevant samples:&amp;nbsp;&lt;A href="https://developers.arcgis.com/javascript/latest/sample-code/" target="_blank"&gt;https://developers.arcgis.com/javascript/latest/sample-code/&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 21 May 2026 16:01:00 GMT</pubDate>
    <dc:creator>Noah-Sager</dc:creator>
    <dc:date>2026-05-21T16:01:00Z</dc:date>
    <item>
      <title>Disable Tooltip on Search Component</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/disable-tooltip-on-search-component/m-p/1703188#M88457</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;there is a tooltip on the input which simply shows the previous placeholder/watermark.&lt;BR /&gt;Its gone, after typing any input.&lt;/P&gt;&lt;P&gt;I would like to disable this tooltip at all.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SebastianKrings_0-1779297631326.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/152707i63D671E013897374/image-size/medium?v=v2&amp;amp;px=400" role="button" title="SebastianKrings_0-1779297631326.png" alt="SebastianKrings_0-1779297631326.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;In case the locator is enabled as single source its gone and replaced by a locator message.&lt;BR /&gt;This shouldn't be disabled.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SebastianKrings_1-1779297708837.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/152708iA9A7733A36CA1D72/image-size/medium?v=v2&amp;amp;px=400" role="button" title="SebastianKrings_1-1779297708837.png" alt="SebastianKrings_1-1779297708837.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Seen on the sample here:&lt;BR /&gt;&lt;A href="https://developers.arcgis.com/javascript/latest/references/map-components/components/arcgis-search/" target="_blank"&gt;https://developers.arcgis.com/javascript/latest/references/map-components/components/arcgis-search/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;BTW:&lt;BR /&gt;Why dont you put samples into the docs any more as we were used to have on the old widget docs.&lt;BR /&gt;To be honest, I often am googlin for the widgets doc to get the samples related and their codepens.&lt;BR /&gt;Hope this will come back for components as well.&lt;/P&gt;</description>
      <pubDate>Wed, 20 May 2026 17:24:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/disable-tooltip-on-search-component/m-p/1703188#M88457</guid>
      <dc:creator>SebastianKrings</dc:creator>
      <dc:date>2026-05-20T17:24:47Z</dc:date>
    </item>
    <item>
      <title>Re: Disable Tooltip on Search Component</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/disable-tooltip-on-search-component/m-p/1703195#M88458</link>
      <description>&lt;P&gt;I believe the tool tip comes from the title.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;const search = new Search({
  view: view
});

view.ui.add(search, "top-right");

search.when(() =&amp;gt; {
  const input = search.container.querySelector("input");

  if (input) {
    input.removeAttribute("title");
  }
})&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 20 May 2026 17:44:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/disable-tooltip-on-search-component/m-p/1703195#M88458</guid>
      <dc:creator>MatthewDriscoll</dc:creator>
      <dc:date>2026-05-20T17:44:34Z</dc:date>
    </item>
    <item>
      <title>Re: Disable Tooltip on Search Component</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/disable-tooltip-on-search-component/m-p/1703269#M88459</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;thanks for reaching out.&lt;BR /&gt;Despite youre using old widget, I cannot see any title on the input. Do you?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SebastianKrings_0-1779309388708.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/152728iF99D3CAA0AD2E73A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="SebastianKrings_0-1779309388708.png" alt="SebastianKrings_0-1779309388708.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 20 May 2026 20:37:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/disable-tooltip-on-search-component/m-p/1703269#M88459</guid>
      <dc:creator>SebastianKrings</dc:creator>
      <dc:date>2026-05-20T20:37:03Z</dc:date>
    </item>
    <item>
      <title>Re: Disable Tooltip on Search Component</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/disable-tooltip-on-search-component/m-p/1703270#M88460</link>
      <description>&lt;P&gt;Sorry, not many have moved onto components yet. Try this.&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;arcgis-search
  id="search"
  popup-disabled
&amp;gt;&amp;lt;/arcgis-search&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My guess is the title is now behind the shadow dom.&amp;nbsp; So you might need to wait until the component is ready.&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;const search = document.getElementById("search");

search.addEventListener("arcgisReady", () =&amp;gt; {

  // access internal input inside shadow DOM
  const input = search.shadowRoot?.querySelector("input");

  // remove browser tooltip
  input?.removeAttribute("title");

});&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 20 May 2026 20:43:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/disable-tooltip-on-search-component/m-p/1703270#M88460</guid>
      <dc:creator>MatthewDriscoll</dc:creator>
      <dc:date>2026-05-20T20:43:19Z</dc:date>
    </item>
    <item>
      <title>Re: Disable Tooltip on Search Component</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/disable-tooltip-on-search-component/m-p/1703315#M88462</link>
      <description>&lt;P&gt;its placed within an autocomplete, not an input.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;calcite-autocomplete autocomplete="off" class="autocomplete" overlay-positioning="fixed" title="Alle" alignment="start" placement="bottom-start" scale="m" status="idle" icon="search" max-length="128" name="" calcite-hydrated=""&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;Placing the following code into any one time method, removes the tooltip once.&lt;BR /&gt;On any change of the source I need to watch on that an re-run this code.&lt;/P&gt;&lt;P&gt;Kinda hacky, hoped for a more build-in solution.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;&amp;lt;arcgis-search #search ... /&amp;gt;
	

private readonly _searchRef = viewChild.required&amp;lt;ElementRef&amp;lt;HTMLArcgisSearchElement&amp;gt;&amp;gt;('search');
const searchElement = this._searchRef().nativeElement;

searchElement.addEventListener('arcgisReady', () =&amp;gt; {
	// Das calcite-autocomplete Element im ersten Shadow DOM finden
	const autocomplete = searchElement.shadowRoot?.querySelector('calcite-autocomplete');
	
	autocomplete?.removeAttribute('title');
});&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried the&amp;nbsp;arcgisPropertyChange but this is not fired when changing the active search source via dropdown.&lt;/P&gt;&lt;PRE&gt;(arcgisPropertyChange)="searchPropertyChange($event)"&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;    searchPropertyChange(event: CustomEvent&amp;lt;{ name: String }&amp;gt;) {
        if (event?.detail?.name === 'active-source') {
            const autocomplete = this._searchRef().nativeElement.shadowRoot?.querySelector('calcite-autocomplete');
            autocomplete?.removeAttribute('title');
        }
    }&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The breakpoint on the if is never hit.&lt;BR /&gt;Just noticed, that there is no attribute-name for searchSource like search-source. May that is an indicator that this property is not part of the event at all?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SebastianKrings_0-1779319384514.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/152745i7EE12B45D0B19EF0/image-size/medium?v=v2&amp;amp;px=400" role="button" title="SebastianKrings_0-1779319384514.png" alt="SebastianKrings_0-1779319384514.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 20 May 2026 23:23:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/disable-tooltip-on-search-component/m-p/1703315#M88462</guid>
      <dc:creator>SebastianKrings</dc:creator>
      <dc:date>2026-05-20T23:23:10Z</dc:date>
    </item>
    <item>
      <title>Re: Disable Tooltip on Search Component</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/disable-tooltip-on-search-component/m-p/1703497#M88464</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/83360"&gt;@SebastianKrings&lt;/a&gt;&amp;nbsp;and&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/327152"&gt;@MatthewDriscoll&lt;/a&gt;. Thanks for posting your questions and thoughts here. There are a couple things to address.&lt;/P&gt;&lt;P&gt;1) &lt;STRONG&gt;Disabling tooltips&lt;/STRONG&gt;. We like tooltips because they can enhance the overall user experience, and are an important component of web accessibility. In general, the tooltip story for our components is consistent, so this is not just about Search. To help us better understand, why do you want to disable a tooltip? Would you want to also be able to edit/customize or add a tooltip?&lt;/P&gt;&lt;P&gt;2) &lt;STRONG&gt;Samples in component docs&lt;/STRONG&gt;. Our component doc is different from our widget doc, and our component doc is still being updated and refined. We appreciate your patience. This will improve. Also, have you seen the updated Samples page? It is super easy to filter and search for relevant samples:&amp;nbsp;&lt;A href="https://developers.arcgis.com/javascript/latest/sample-code/" target="_blank"&gt;https://developers.arcgis.com/javascript/latest/sample-code/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 21 May 2026 16:01:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/disable-tooltip-on-search-component/m-p/1703497#M88464</guid>
      <dc:creator>Noah-Sager</dc:creator>
      <dc:date>2026-05-21T16:01:00Z</dc:date>
    </item>
    <item>
      <title>Re: Disable Tooltip on Search Component</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/disable-tooltip-on-search-component/m-p/1703505#M88465</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/169842"&gt;@Noah-Sager&lt;/a&gt;&amp;nbsp;.&amp;nbsp; &amp;nbsp;For me personally I stopped using the Search component completely since you switched to prefix only.&amp;nbsp; Pretty much makes the component useless for my purposes.&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/t5/arcgis-javascript-maps-sdk-ideas/search-component-exactmatch-bring-back-full-text/idi-p/1685947/jump-to/first-unread-message" target="_blank"&gt;Idea posted here.&lt;/A&gt;&lt;/P&gt;&lt;P&gt;In the newer version, if I am looking for 'Driscoll' and in my table there is a 'MatthewDriscoll', the new search component will never find it.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 21 May 2026 16:21:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/disable-tooltip-on-search-component/m-p/1703505#M88465</guid>
      <dc:creator>MatthewDriscoll</dc:creator>
      <dc:date>2026-05-21T16:21:46Z</dc:date>
    </item>
    <item>
      <title>Re: Disable Tooltip on Search Component</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/disable-tooltip-on-search-component/m-p/1703551#M88466</link>
      <description>&lt;P&gt;Yeah, I hear you&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/327152"&gt;@MatthewDriscoll&lt;/a&gt;.&amp;nbsp;I think we've chatted about this before. Always open to feedback though, so I'll keep monitoring that Idea, I just don't see us making a change there in the near future.&lt;/P&gt;</description>
      <pubDate>Thu, 21 May 2026 19:01:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/disable-tooltip-on-search-component/m-p/1703551#M88466</guid>
      <dc:creator>Noah-Sager</dc:creator>
      <dc:date>2026-05-21T19:01:08Z</dc:date>
    </item>
    <item>
      <title>Re: Disable Tooltip on Search Component</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/disable-tooltip-on-search-component/m-p/1703560#M88467</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/169842"&gt;@Noah-Sager&lt;/a&gt;&amp;nbsp;:&lt;/P&gt;&lt;P&gt;1)&lt;BR /&gt;From our point of view a tooltip should not show te exact same information as e.g. a label or watermark. It then just duplicates the exactly same information.&lt;BR /&gt;How does this enhance accessibility?&lt;BR /&gt;&lt;BR /&gt;Short digression: We customized actions in our apps in that way, that when they are only shown by icon, then a tooltip is activated. If there is enough space and next to the action the text enabled is set and shown, then the tooltip is deactived since it literally would show the same characters as the text already does.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;2)&lt;BR /&gt;How about simply putting direct links then into the docs?&lt;BR /&gt;Like:&lt;BR /&gt;&lt;A href="https://developers.arcgis.com/javascript/latest/sample-code/?search=search" target="_blank"&gt;https://developers.arcgis.com/javascript/latest/sample-code/?search=search&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/327152"&gt;@MatthewDriscoll&lt;/a&gt;&amp;nbsp;:&lt;/P&gt;&lt;P&gt;What do you mean with prefix-only? the kind of "contains"-search which seems to be turned into a "any word starts with but not contains"?&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;I also am struggling with this since out upgrade.&lt;BR /&gt;Is that documented somewhere? This will become a pain to our customer too since we already approved to support that and now since the update its gone.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;I already posted a reply here, but am not getting response unfortunately. Am thinking about to open a new discussion.&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/search-widget-4-25-deep-searching-feature-layer/m-p/1699250#M88396" target="_blank"&gt;https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/search-widget-4-25-deep-searching-feature-layer/m-p/1699250#M88396&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 21 May 2026 19:13:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/disable-tooltip-on-search-component/m-p/1703560#M88467</guid>
      <dc:creator>SebastianKrings</dc:creator>
      <dc:date>2026-05-21T19:13:38Z</dc:date>
    </item>
    <item>
      <title>Re: Disable Tooltip on Search Component</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/disable-tooltip-on-search-component/m-p/1703565#M88468</link>
      <description>&lt;P&gt;The discussion and my solution can be found &lt;A href="https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/search-component-exactmatch-possible-bug/m-p/1685952#M88180" target="_self"&gt;here&lt;/A&gt;.&amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 21 May 2026 19:48:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/disable-tooltip-on-search-component/m-p/1703565#M88468</guid>
      <dc:creator>MatthewDriscoll</dc:creator>
      <dc:date>2026-05-21T19:48:25Z</dc:date>
    </item>
  </channel>
</rss>

