Cursor Dialog text on the geometry picker.
I have a point geometry picker and by default the cursor dialog/tooltip is "Click to add a point". In workflow 5 builder - I change the tooltip - but this doesn't affect this little dialog. Is there any way to do this?
-
Hi Darryl,
The tooltip setting defines the text when you hover over the Geometry Picker button. It is not currently possible to change the text while interacting with the map; feel free to add this to the Ideas section.
Thanks, Stefan
0 -
Thanks for the info Stefan. Do you know if there is anywhere in the downloaded code of my ArcGIS web app builder where I can go in and edit, that might change this?
Thanks again!
Darryl
0 -
Hi Darryl,
This text originates from within the Esri API, so unfortunately we don't have any control of that text.
Thanks, Stefan
0 -
Hi Darryl,
You may be able to play around with the InjectCSS Activity with something like this:
.map .esriMapTooltip {
visibility: hidden;
}
.map .esriMapTooltip:before {
content: 'Test Test 123';
visibility: visible;
}
0 -
Thanks so much Chris. This works great, much better than editing the backend code. Apparently they do have the ability to modify the text, in a round-about way.
0
Please sign in to leave a comment.
Comments
5 comments