Is it possible to condensed the process bar by default, because it takes too much white space. So, Is there any way to do this?
I want to show the process bar like below mock-up.
Is it possible to condensed the process bar by default, because it takes too much white space. So, Is there any way to do this?
I want to show the process bar like below mock-up.
you need a tiny amount of Javascript to do this, just add the following to a webresource and attach it to the form...
function pageLoad(){
Xrm.Page.ui.process.setDisplayState('collapsed');
}
community.dynamics.com/.../205161 has a bit more detail including some logic that would ensure it is only triggered when the process is at a particular stage.