How to have the Hide /Un Hide for Notes and other Tabs on Custom Form?

VIKASM535239375
Kilo Sage

How to have the Hide /Un Hide for Notes and other Tabs on Custom Form?

1 REPLY 1

Jordan Vignoni
Tera Guru

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);

}