*This post is locked for comments
*This post is locked for comments
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 }
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,253 Super User 2024 Season 2
Martin Dráb 230,188 Most Valuable Professional
nmaenpaa 101,156