Hello,
I have a requirement to change the tooltip from the business process flow stages.
I know that we can change the tooltips of the fields using javascript, however i cannot find information to how to access the headers tooltips.
Please see the image below:
Can you please tell-me a way to how to acheive it?
Thank You in advance.
*This post is locked for comments
Hi there, are you able to use the same code in February 2023? I tried to use your code and it was not successful.
As brother Francesco Picchi said this will work perfectly. Any unsupported customization using jQuery may not work in the feature releases.. we have implemented many such most of them is not working in v9.
There is no supported way.. everything you do there with javascript would be unsupported (may stop working after an upgrade etc)
Hello Francesco,
It did worked!
Thank you
Hi Ruben,
i write for you this code which does the job.
I've tested it and it works.
Please note this is to be considered an "unsupported" customization.
Proceed as follows:
1) load jquery library into crm
2) include jquery library in the entity form
3) create a new script web resource
4) paste this code into new web resource file
var interval = null; function SetStageTitles() { interval = setInterval(function () { var elem = $("#stage_0", parent.document).length > 0; if (elem) { $("#stage_0 .processStageTailContainer", parent.document).attr("title", "Custom Stage 1"); $("#stage_1 .processStageTailContainer", parent.document).attr("title", "Custom Stage 2"); $("#stage_2 .processStageTailContainer", parent.document).attr("title", "Custom Stage 3"); clearInterval(interval); } }, 1000); }
5) include new web resource library in the entity form
6) add SetStageTitles into OnLoad event.
Please let me know.
If you found the answer helpful, please mark as Verified
Join my network on LinkedIn Follow me on Twitter
Thank You & Best Regards
Francesco Picchi
Microsoft Dynamics CRM Consultant, Bologna, ITALY
Independent Contractor
Stay up to date on forum activity by subscribing. You can also customize your in-app and email Notification settings across all subscriptions.
André Arnaud de Cal... 291,240 Super User 2024 Season 2
Martin Dráb 230,149 Most Valuable Professional
nmaenpaa 101,156