Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-16-2018 01:20 AM
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