Completely remove tool tip from eSearch?

755
3
Jump to solution
09-11-2020 08:42 AM
MartinOwens1
Occasional Contributor II

I have added showTooltips: false; to almost every place I can think of in the widget.js and can't seem to remove the tooltip from the graphic select option. Any help would be appreciated.

0 Kudos
1 Solution

Accepted Solutions
RobertScheitlin__GISP
MVP Emeritus

Martin,

   Glad You found a way while I was away. The ways to do this in code is In the Widget.js _initDrawBox function.

this.drawBox.drawToolBar._options.showTooltips = false;

View solution in original post

3 Replies
MartinOwens1
Occasional Contributor II

I realized I can just set the display through the CSS as none.

.map .esriMapTooltip {
   display: none !important;
}

0 Kudos
RobertScheitlin__GISP
MVP Emeritus

Martin,

   Glad You found a way while I was away. The ways to do this in code is In the Widget.js _initDrawBox function.

this.drawBox.drawToolBar._options.showTooltips = false;
MartinOwens1
Occasional Contributor II

Nicely done Robert! I was missing the _options.

0 Kudos