Join the Community
ServiceNow Community
About adi31
User Activity
Posts
Replies
No posts to display.
Re: How to hide Select box variable options.
08-16-2018
use an onLoad client script script: if(g_user.hasRole('specific role')){ g_form.clearOptions('field name'); } you could also use g_form.removeOption('field name','value') to remove specific options Mark correct if this was helpful