locked
CRM 2013 - Disable navigation clicks in Business Process Bar RRS feed

  • Question

  • Hello!

    Is it possible to disable the navigation clicks in the Business Process bar? I have a new Business Process with 3 stages: A, B and C. In each stage, the user can perform some personalized actions through some new buttons (added with the Ribbon Workbench 2013).

    When the user clicks the buttons, some javascript actions occurs and then automatically i can advance the user to the next stage, but i need him to press that button before he advances.

    That's why i want to disable the navigation to different stages through the clicks on the Business Process Bar, but not disable the Business Process completely. The user should be able to see in which stage he is, but not advance through it (forcing him to use the action buttons).

    Is is possible? Thanks a lot!

    Tuesday, October 7, 2014 3:32 PM

Answers

  • Thanks for the answers hahaha in case anyone needs to know:

    JavaScript in the onLoad method of the form:

    processActionsContainer.style.display = ""; //Disables the next stage

    processActionsContainer.style.display = "none"; //Hides the next stage

    Thursday, October 9, 2014 9:08 PM