Skip to main content
Post a question

Notifications

Community site session details

Community site session details

Session Id : QmEEu1AOaBOBdrXX5a8OHH
Microsoft Dynamics CRM (Archived)

Anyone know how to remove the "click to enter" text from the Business Process bar

Like (0) ShareShare
ReportReport
Posted on 4 Jul 2018 14:14:06 by 255

We are using the Business Process bar on a custom entitity.

In the main, the fields are locked down and populated by an overnight job.  One or two of the date fields will sometimes be empty.

Since they are locked it is a bit rubbish to have the "click to enter" text within the field cell since nothing happens when you click it.

We would rather have blank space.

Any solutions?

*This post is locked for comments

  • Verified answer
    gordonj Profile Picture
    255 on 06 Jul 2018 at 08:16:24
    RE: Anyone know how to remove the "click to enter" text from the Business Process bar

    In the end I created an HTML Web Resource with the necessary JavaScript to update the fields.

    This seems to be the only way since the web resource will load last. My JavaScript isn't brilliant. Has real trouble drilling down to the span and in the end had to replace the entire div as my time was limited. Would rather have just replaced the text in the span.

    Interestingly when I test the span value it contains a hyphen.

    Solution works: although prone to breakage when Microsoft updates the UI. Customer was happy with the solution.

    1. <html>
    2. <head>
    3. <script>
    4. var finalreportdate = window.parent.document.getElementById("field1").firstElementChild.firstElementChild;
    5. var postimplementationset = window.parent.document.getElementById("field2").firstElementChild.firstElementChild;
    6.  
    7. if (finalreportdate.innerText.length <= 1) {
    8. window.parent.document.getElementById("field1").innerHTML = "<div><span style='color:blue;font-style:italic;padding-left:24px;'>Unavailable</span><div>";
    9. }
    10.  
    11. if (postimplementationset.innerText.length <= 1) {
    12. window.parent.document.getElementById("field2").innerHTML = "<div><span style='color:blue;font-style:italic;padding-left:24px;'>Unavailable</span><div>";
    13. }
    14. </script>
    15. <meta>
    16. <style type="text/css">
    17. P {
    18. margin: 0;
    19. }
    20. </style>
    21. </head>
    22. <body>
    23.  
    24.  
    25. </body>
    26. </html>


    The answer to completely hide the field using the OTB functionality is the one I would also advise anyone finding this article to use: unless, like in my case, the customer is quite adamant.

    Thank you for the answers.

  • Community Member Profile Picture
    on 04 Jul 2018 at 18:58:27
    RE: Anyone know how to remove the "click to enter" text from the Business Process bar

    Hi,

    An alternate solution could be to hide the fields until they contain some value.

    You could do this with javascript and have a simple check onload if the fields contain value or not.

    You should also be able to show/hide the fields using a business rule.

    Hope this can help you in any way.

  • Aric Levin Profile Picture
    30,188 Moderator on 04 Jul 2018 at 16:00:03
    RE: Anyone know how to remove the "click to enter" text from the Business Process bar

    There is no supported way to do this. You can probably do it with jquery or the dom, and modifying the control properties/attributes, but except for this, I don't think there is a way.

  • Suggested answer
    gdas Profile Picture
    50,089 Moderator on 04 Jul 2018 at 15:53:37
    RE: Anyone know how to remove the "click to enter" text from the Business Process bar

    Hello Gordon,

    I have seen another post having same concern but there is no supported customization to change this  text.

    You can put your concern here-

    experience.dynamics.com/ideas

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

🌸 Community Spring Festival 2025 Challenge 🌸

WIN Power Platform Community Conference 2025 tickets!

Jonas ”Jones” Melgaard – Community Spotlight

We are honored to recognize Jonas "Jones" Melgaard as our April 2025…

Kudos to the March Top 10 Community Stars!

Thanks for all your good work in the Community!

Leaderboard

#1
André Arnaud de Calavon Profile Picture

André Arnaud de Cal... 293,435 Super User 2025 Season 1

#2
Martin Dráb Profile Picture

Martin Dráb 232,567 Most Valuable Professional

#3
nmaenpaa Profile Picture

nmaenpaa 101,158 Moderator

Leaderboard

Featured topics

Product updates

Dynamics 365 release plans
Loading complete