Hi ,
Can we hide the finish button of business process flow which is shown when last is active .
Thanks ,
Waseem
*This post is locked for comments
Hi ,
Can we hide the finish button of business process flow which is shown when last is active .
Thanks ,
Waseem
*This post is locked for comments
I am not sure as I said earlier you could try to register the funcion "OnloadForm" in form onload event-
function OnloadForm() { Xrm.Page.data.process.addOnStageSelected(onchangeStage); Xrm.Page.data.process.addOnStageChange(onchangeStage); } function onchangeStage() { var stageName = Xrm.Page.data.process.getSelectedStage().getName().toString().toUpperCase(); if(stageName == "LAST STAGE NAME") { //Get the button/div id using browser F12 selector if(buttonid ! = null) { //Maike the id Display none } }
Gautam ,
On what event i will be adding the above code .
Thanks,
Waseem
Gautam ,
The product owner says - when the last stage is active , thats enough for him and he doesnt want to mark the process as finished .
to avoid user confusion .
Thanks,
Waseem .
Hi Waseem,
May I know for what purpose you want to hide the Finish button?
I have not tried this before, press F12 and move the selector to the Finish button to get the id and hide the button in registering function in below method. This is not supported at all.
Xrm.Page.data.process.addOnStageSelected(myFunction);
Xrm.Page.data.process.addOnStageChange(myFunction);
Hi Gautam ,
Thanks for your reply .can you please provide bit more information how do we hide by accessing DOM .
Thanks,
Waseem.
Hi,
There is no supported way to achieve this. And accordingly to me you should not hide it as it will inform the user that this is the last step.
Hi Mohammed ,
Unfortunately there is no supported way to hide the finish button .
You may try to hide accessing DOM but make sure this is completely not supported.
Stay up to date on forum activity by subscribing. You can also customize your in-app and email Notification settings across all subscriptions.
André Arnaud de Cal... 291,280 Super User 2024 Season 2
Martin Dráb 230,235 Most Valuable Professional
nmaenpaa 101,156