Created
May 18, 2018 19:29
-
-
Save cmcdevitt/c39e5ababe3aaad25f439601eab60c98 to your computer and use it in GitHub Desktop.
ServiceNow Hide a Section Tab Client Script
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function onLoad() { | |
| var userID = g_form.getReference('caller',rb); | |
| } | |
| //if request is submitted by user X | |
| function rb(userID){ | |
| if (userID.user_name == "X" ){ | |
| g_form.setSectionDisplay("sometabname", true); | |
| } | |
| else { | |
| g_form.setSectionDisplay("sometabname", false); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment