Skip to main content

Notifications

Announcements

No record found.

Dynamics 365 general forum
Suggested answer

Hide the Stage in BPF

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

Quick Links

Anton Venter – Community Spotlight

Kudos to our October Community Star of the month!

Announcing Our 2024 Season 2 Super Users!

A new season of Super Users has arrived, and we are so grateful for the daily…

Dynamics 365 Community Newsletter - September 2024

Check out the latest community news

Leaderboard

#1
André Arnaud de Calavon Profile Picture

André Arnaud de Cal... 290,564 Super User 2024 Season 2

#2
Martin Dráb Profile Picture

Martin Dráb 228,651 Most Valuable Professional

#3
nmaenpaa Profile Picture

nmaenpaa 101,148

Leaderboard

Featured topics

Product updates

Dynamics 365 release plans