Setting 'setSectionDisplay' function to 'false' does not hide the form section.Issue After setting the g_form.setSectionDisplay function to 'false' in a client script, it does not hide the form section on page load. g_form.setSectionDisplay('<section_name>', false);CauseThere could be two causes for this: The setSectionDisplay function not working properly is due to how the section name is used within the function.There are mandatory fields within the section that is being hidden.ResolutionFor #1 As per the documentation on setSectionDisplay, the section name is in lowercase with an underscore replacing the first space in the name, and with the remaining spaces being removed. For example: "Section Four is Here" becomes "section_fourishere". Other non-alphanumeric characters, such as ampersand (&), are removed. **Section names can be found by using the getSectionNames() method. For #2 This is expected behavior that if there are mandatory fields within the section being hidden the section itself will not be hidden. The reason is that users won't be able to see which mandatory fields to fill out if the section that contains them is hidden.Related LinksGlideForm ClientGlideForm - setSectionDisplay