Skip to main content
Question

How to remove the "New" tab on a Pick List / Referencing Object field??

  • January 10, 2025
  • 1 reply
  • 28 views

Forum|alt.badge.img+1

I created a field which references user groups, and I want the field selection prompt to only allow selecting existing options, and to completely hide the “New” tab that always appears.  How can I do this?

This topic has been closed for replies.

1 reply

Forum|alt.badge.img+2
  • Bronze Innovator
  • January 16, 2025

I’ve not found a way to do it for specific types (e.g. User Groups) only, but the below may be applicable to you if you have some profiles who are not supposed to be able to ADD anything via these field selection prompts. 

In Settings->Profiles for the relevant profile, select General->Properties then in the “Custom CSS” section you can add this line: 

div[id^="editorContainer"] .add-object-tabs ul li:nth-child(2) {display:none;}

It will remove the ‘New’ tab from ALL field selection prompts which includes User Groups, but also other types such as Users, Projects (workitems), Portfolios, Risks (Cases), etc..