- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-24-2020 09:36 AM
Hi,
Can anyone provide me solution how to make a visible Task Related List for User who has special role using ACL on read?
User with role should also see related list with Tasks
admin view
User with role
Solved! Go to Solution.
- Labels:
-
Scripting and Coding
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-24-2020 09:43 AM
Hi,
Based on the role you can check and show/hide related list via client script
if(g_user.hasRole('<yoru role>'))
{
g_form.showRelatedList('related_list_table_name');
}
else
{
g_form.hideRelatedList('related_list_table_name');
}
Read More here: Hiding Related Lists and Embedded Lists
-Anurag
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-24-2020 09:52 AM
Hi Anurag,
it should hide it - the issue is that you will see "5 records hidden" or something similar. Otherwise no visibility as far as I can remember (well, I can be very wrong for sure - just saying whats on top of my head 🙂 )
Cheers,
Joro
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-24-2020 09:53 AM
Actually - you are totally right! This is filter only!
So dont listen to me! 😄
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-24-2020 10:03 AM
Cool 🙂
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-24-2020 09:56 AM
Anyways,
as Anurag stated, one of the ways (I cant think of other one at this moment actually) is using the g_form or g_list in CSJS (client side JS, right). Otherwise you should go to ACL for this particular table (the list table)
Cheers,
Joro
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-24-2020 11:10 AM
anyway guys,