Important Update: Archer Community Scheduled Maintenance on November 23–24 - New Community Launching Soon! Learn More..
2021-04-02 02:35 PM
Hi all,
I want to hide the Administration icon (up right) when a user logins because I provided Datafeed access and I don't want them to go through the Datafeed...
I know that you can hide Copy button, etc. but Administration icon?
Any ideas?
2021-04-06 08:52 AM
Here it is -
2021-04-06 09:51 AM
Thanks, try:
<script type="text/javascript">
$('.jss560[title="Administration"]', window.parent.parent.document).hide();
</script>
Advisory Consultant
2021-04-06 09:57 AM
Yes sir
It works like a charm!
Thank you -
2021-08-11 03:21 PM
Below code is not working in 6.9P2 and throws an error ('$' is undefined) in F12console.
<script type="text/javascript"> $('.ABO-NAV-anv241[title="Administration"]', window.parent.parent.document).hide(); </script>
2021-08-11 03:33 PM
@sandeepgrc_4, is this in a custom object or a custom iView?
Advisory Consultant
2021-08-12 08:20 AM
@sandeepgrc_4, thanks.
You could go old school JavaScript to get to the element or add the following to the custom iView to load the jQuery framework,
<script type="text/javascript" src="/shared/scripts/jquery/jquery.js"></script>
Advisory Consultant