How to remove "Save & New" button from "N

Posted by lCira9 on 07-May-2014 21:56

How do you remove "Save & New" button from "New Record"?

Posted by Santosh Patel on 08-May-2014 13:12

As Laurent mentioned this is not a configurable option today. If it is important to you, here is a customization you can do.

To do this at an application level navigate to the Application's overview (Goto Application Setup > Your Application > More Options > Header and Footer

Add the following script to the footer and you should be good to go :

<script>
$('input[value="Save & New"]').hide();
</script>


Thanks,

Santosh

All Replies

Posted by Laurent on 08-May-2014 11:26

It doesn't seem like it can be removed as the Page Begin section cannot be modified nor deleted when you edit the New page.

Posted by Santosh Patel on 08-May-2014 13:12

As Laurent mentioned this is not a configurable option today. If it is important to you, here is a customization you can do.

To do this at an application level navigate to the Application's overview (Goto Application Setup > Your Application > More Options > Header and Footer

Add the following script to the footer and you should be good to go :

<script>
$('input[value="Save & New"]').hide();
</script>


Thanks,

Santosh

Posted by lCira9 on 08-May-2014 19:31

Thanks, it worked.

This thread is closed