Important Update: Archer Community Scheduled Maintenance on November 23–24 - New Community Launching Soon! Learn More..
2018-06-26 05:17 PM
I am in search of a custom object that will hide both the Save and Save and Close buttons. This is for use in an application using Advanced Workflow; we want to drive users to use the Advanced Workflow button to move the record to the next node rather than the Save button which leaves the record in the current node.
We had a custom object that did this in version 6.1 but after upgrading to 6.3 P3 it no longer works:
<Script type="text/javascript">
Sys.Application.add_load(function(){$("#master_btnSave").hide(); });
</script>
Any help would be greatly appreciated!
2020-08-27 10:42 AM
Hi Saumya Mishra,
Yes I think it did change, this is what I have for the name of the Save button. master_btnApply1.
Here is my working code.
<script>
Sys.Application.add_load(function() {
$('#master_btnApply1').hide();
$('.rmLink:contains("Save")').hide();
});
</script>
2020-09-01 10:15 AM
Hi kenneth, Thanks for the updated code. It's working for me as well in version 6.8 P3