I am working on a Model Driven application for an internal Purpose the main aim is to show some Training and track the details of the candidates, here we have mostly used Model Driven Forms only and now we have few changes/suggestion from the team to remove the Unique values of the column and Table name from from the Header of the page and in that place they want something else to be displayed.
So my ask here is, do we have any option where we can change those values, we have tried a Java Script which is hiding the entire Header of that page, but that is not giving a good look, please find the below code that we have used for hiding.
function DoLoad(executionContext) {
var formContext =executionContext.getFormContext();
formContext.ui.headerSection.setBodyVisible(false);
}
Any suggestion will be helpful.