Important Update: Community URLs redirect issues are partially resolved. Learn More. .

cancel
Showing results for 
Search instead for 
Did you mean: 

Looking for a Custom Object to Hide the Save Button

AmandaWeis
Contributor III

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!

11 REPLIES 11

KennethBlacow
Collaborator II

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>

Anonymous
Not applicable

Hi kenneth, Thanks for the updated code. It's working for me as well in version 6.8 P3