
*This post is locked for comments
I have the same question (0)Check with this -
function GetParent(executionContext) {
var formContext = executionContext.getFormContext();
var tabObj = formContext.ui.tabs.get("TabName");
var sectionObj = tabObj.sections.get("SectionName");
var tabObjDetails = sectionObj.getParent();
}
function SetLabel(executionContext) {
var formContext = executionContext.getFormContext();
var tabObj = formContext.ui.tabs.get("TabName");
var sectionObj = tabObj.sections.get("SectionName");
sectionObj.setLabel("Put Section Name what you want");
}
function SetSectionVisible(executionContext) {
var formContext = executionContext.getFormContext();
var tabObj = formContext.ui.tabs.get("TabName");
var sectionObj = tabObj.sections.get("SectionName");
sectionObj.setVisible(true); //pass true to display and false to display off
}