Skip to content

Instantly share code, notes, and snippets.

@cmcdevitt
Created May 18, 2018 19:29
Show Gist options
  • Select an option

  • Save cmcdevitt/c39e5ababe3aaad25f439601eab60c98 to your computer and use it in GitHub Desktop.

Select an option

Save cmcdevitt/c39e5ababe3aaad25f439601eab60c98 to your computer and use it in GitHub Desktop.
ServiceNow Hide a Section Tab Client Script
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