- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-26-2014 08:06 PM
Hi anurag
That would mean that for each and every report we need to restict ACL. That would be long and painstaking. now i just need a way to make the email field in popup to be read only.
Thanks
Harish
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-18-2014 03:11 AM
davina, you mentioned :
You could update the conditions of the UI Context Menu button to only allow certain roles?
In the nav menu go to Ui Context Menu and filter on name *export, you should be then able to add a role.
can ou please help in understanding this please explain this so that i too may be benifitted with your knowledge
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-13-2015 02:21 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-11-2017 04:18 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-15-2018 09:23 AM
This condition was close but did not fulfill the need for me. Here is the before and after condition that allows only admins to export via the List context menu.
Condition before: !ListProperties.isRelatedList() && !ListProperties.isRefList()
Condition after: (gs.hasRole('admin')) && !ListProperties.isRelatedList() && !ListProperties.isRefList()