I want to expand the Business Process Flow Stages section when creating a new one but also keep the horizontal scroll bar as there are more fields required on the first stage that requires a scroll bar
The below javascript works but hides the horizontal scroll bar. Can someone advise how to keep the horizontal scroll bar?
function onLoad() {
if (Xrm.Page.ui.getFormType() == 1) {
showBusinessProcessFlow();
}
}
function showBusinessProcessFlow() {
var businessProcessArea = $("#processControlCollapsibleArea");
if (businessProcessArea != null) {
businessProcessArea.css({ display: "block" });
}
}
Thanks