Hi,
Is there a way of restricting BPF to move backwards. Which is the user should not be able to go to the previous stage and should only be able to move forward.
Thanks.
*This post is locked for comments
Workflow can also be used to restrict movement between stages
So how did you prevent the BPF move?
Awesome
Hi Prashant,
I have got a solution by combining all the answers, i already have a workflow that changes another custom field based on the the BPF movement, so in the same workflow i have written another logic to check the custom field and then stop the action of the BPF.
Though it does not hide the back button(which would be super awesome), i able to somehow restrict moving back with OOB functionality.
Thanks
Hi Suresh, for some reason its not working, please help.
Open the developer tools (F12) and try to find the button and make css display to none. If that works, find the id of Back button and try to hide using jquery.
I'm using following code to hide back button in Dynamics CRM 2013 on-premise
$('#stageBackActionContainer').hide();
$('#stageBackActionContainer').html('');
$('#stageBackActionContainer').css('width', '0px');
Hi Nithya,
This time the error just says "undefined", i tried debugging the code after the debugger enters the first line its calling the exception.
Thanks
Try the code below.
$("#stageBackActionContainer").on("click",function (e) { alert("Restricted Back Move!"); });
Hi Nithya,
Thank you very much for your efforts, I tried the code above and i am getting an error "Unable to get property "Click" of undefined or null reference. Should i be including any libraries for this to work.
Thanks again for your help
André Arnaud de Cal...
292,074
Super User 2025 Season 1
Martin Dráb
230,900
Most Valuable Professional
nmaenpaa
101,156