How to have the Hide /Un Hide for Notes and other Tabs on Custom Form?
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-18-2024 01:02 AM
How to have the Hide /Un Hide for Notes and other Tabs on Custom Form?
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-18-2024 08:55 AM
Assuming you are wanting to hide/show sections on a form for specific use cases, you can create a UI policy and use g_form.setSectionDisplay() in the "Script" section of the UI policy. For example:
function onCondition() {
g_form.setSectionDisplay(‘name_of_section', false);
}