Important Update: Archer Community Scheduled Maintenance on November 23–24 - New Community Launching Soon! Learn More..
2020-04-24 08:32 PM
Hello,
I am wanting to hide the Save and Close button on a new record to get the record enrolled in an Advanced Workflow. The new record will be created by non-archer end-users who will not understand the application. I tried using the code examples from this discussion, but it is not working. https://community.rsa.com/message/914041?commentID=914041#comment-914041
I get a "syntax error invalid or unexpected token" error in the console. I do realize that if they click on Save And Close it is going to leave the record open, but I didn't want to even give them the idea that they could save and close.
Archer Version 6.7 P4
Thanks,
Ken
2020-04-25 12:16 AM
<script>
Sys.Application.add_load(function() {
$('#master_btnSave1').hide();
$('.rmLink:contains("Save and Close")').hide();
});
</script>
2020-04-25 07:41 PM
Thank you, that did the trick. I did figure out the master_btnSave1 name for the function but didn't know to use the function to hide the link.
Ken
2020-04-27 05:14 AM
Anytime