2021-05-28 04:42 AM
Hi,
6.9 copy button display as menu item in two places ( right click inside the record page) and search page right click of the keyfield.
how to hide this two copy buttons options in the custom code
#Cusom code
2021-05-28 10:22 AM
To hide the copy buttons in an application, use the following:
<script type="text/javascript">
$('#master_btnCopy').hide();
$('.rmText:Contains("Copy")').parent().parent().hide();
</script>
Unfortunately you cannot hide the copy button in a report.
Advisory Consultant - Archer, an RSA Business
2021-05-28 10:22 AM
To hide the copy buttons in an application, use the following:
<script type="text/javascript">
$('#master_btnCopy').hide();
$('.rmText:Contains("Copy")').parent().parent().hide();
</script>
Unfortunately you cannot hide the copy button in a report.
Advisory Consultant - Archer, an RSA Business
2021-05-28 02:32 PM
@DavidPetty Thanks a lot
2021-06-08 02:10 PM - edited 2021-06-08 04:09 PM
@DavidPetty - when will archer allow us to hide this from the end users on reports? It's causing issues in our newly upgraded 6.9 instance with our end users.
In the meantime is there a way for us to easily identify records that have been copied?
2021-06-08 04:14 PM
Robyn, I have no insight on when that enhancement will be added to Archer. In the meantime, track (and Like if you haven't) these Idea's
To determine if a record is copied. One approach would require a data feed, a new numeric field and calculated values list. The data feed would take the records tracking id and populate the newly created numeric field and the calculated values list would evaluate that numeric field against the records current tracking id and if they are different then you know the record was copied.
Advisory Consultant - Archer, an RSA Business