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.
Solved! Go to Solution.
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;
I realized I can just set the display through the CSS as none.
.map .esriMapTooltip {
display: none !important;
}
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;
Nicely done Robert! I was missing the _options.