How to remove add me from custom created list field
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-25-2017 11:29 AM
I have created a list variable called Tech reviewers and i need to remove Add me icon from this i tried the following code but none of them worked.
----------------------------------------------------------------------------------------------------------------------------------------
$('add_me_locked.change_request.u_tech_reviewers').hide();
$('add_me.change_request.u_tech_reviewers').hide();
----------------------------------------------------------------------------------------------------------------------------------------
var parent = document.getElementById("add_me.change_request.u_tech_reviewers").parentNode;
var child = document.getElementById("add_me.change_request.u_tech_reviewers");
parent.removeChild(child);
-----------------------------------------------------------------------------------------------------------------------------------------
document.getElementById("add_me.change_request.u_tech_reviewers").style.display='none';
document.getElementById("add_me_locked.change_request.u_tech_reviewers").style.display='none';
-----------------------------------------------------------------------------------------------------------------------------------------
When i apply this for watch list or work notes list it works but not for custom created Tech reviewers field.
Thanks in advance,
- Jayanth
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-24-2018 04:12 PM
Thanks for this Plaura, just what I was looking for !!!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-24-2018 05:21 PM
Hi Plura
Can you elaborate a bit?
I guess you are talking about having to create a new dictionary attribute 'no_add_me'
Is the value type 'List"?
Would you apply to Table, Column or both?
Once created, it doesn't want to allow me to add it as an attribute to the field.
It sounds a very useful thing, just can't see how to make it work.
Cheers
Chris
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-25-2018 12:09 AM
Hi Celliven,
you must add dictionary attribute 'no_add_me=true' to field of list type like this.
You can find more about dictionary attribute here: Dictionary Attributes .
This specific attribute is not listed but work 😉
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-20-2020 01:56 AM
Hi Plaura,
It's Working fine for me
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-21-2021 11:40 PM
This works for me.
Thanks!!