function showHideSection()

in CDS.solutions/EducationAcceleratorCommon/Extracts/Base/WebResources/mshied_/Scripts/Utilities/formUtil.js [41:57]


        function showHideSection(formContext, tabName, sectionName, show) {
            if (!formContext || !formContext.ui) {
                return;
            }

            var tab = formContext.ui.tabs.get(tabName);
            if (!tab) {
                return;
            }

            var section = tab.sections.get(sectionName);
            if (!section) {
                return;
            }

            section.setVisible(show);
        }