Skip to main content

Notifications

Microsoft Dynamics 365 | Integration, Dataverse...
Suggested answer

Hide the Stage in BPF

(0) ShareShare
ReportReport
Posted on by 175

Hi everyone im looking for method to hide Stages in BPF ( Next and Back)

i tried several js but still not working : 

function HideStages()

{
 // processActionsContainer.style.display = "none";

$("#stageBackActionContainer").hide();

$("#stageBackActionContainer").html("");

$("#stageAdvanceActionContainer").hide();

$("#stageAdvanceActionContainer").html("");

}
any idea 
Thank you in advance

  • Suggested answer
    LeoAlt Profile Picture
    LeoAlt 16,329 on at
    RE: Hide the Stage in BPF

    Hi Partner,

    First of all, Jquery is not supported in D365 forms.

    If you want to control the DOM element, you should use settimeout function to wait until the ribbon element has been loaded in form.

    function hideRibbon() {
        var back = getElementById('stageBackActionContainer');
        if (back !== null && back != undefined) {
            back.hide();
    
            back.html("");
            clearTimeout(timer);    
    
        }
        else {
            timer = setTimeout(arguments.callee, 1);   
        }
    
    }

    In addition, using JS on DOM directly is not supported in D365, I suggest that you could share more details about your requirement and we'll find other way for it.

    Regards,

    Leo

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

News and Announcements

Announcing Category Subscriptions!

Quick Links

December Spotlight Star - Muhammad Affan

Congratulations to a top community star!

Top 10 leaders for November!

Congratulations to our November super stars!

Tips for Writing Effective Verified Answers

Best practices for providing successful forum answers ✍️

Leaderboard

#1
André Arnaud de Calavon Profile Picture

André Arnaud de Cal... 291,359 Super User 2024 Season 2

#2
Martin Dráb Profile Picture

Martin Dráb 230,370 Most Valuable Professional

#3
nmaenpaa Profile Picture

nmaenpaa 101,156

Leaderboard

Product updates

Dynamics 365 release plans