function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
GnaneswarGnaneswar 

Is there any way to get New button with standard functionality on my related list when I overrided standard New button?

I overrided the New button in Case object to display a VF page. Now, I want to add a button on related list which will act as a standard new button. Can someone help me to do this.?
Vinita_SFDCVinita_SFDC
Hello,

You can create a custom button like:

window.open('{!URLFOR($Action.Case.NewCase, Case.Id )}');
GnaneswarGnaneswar
Thanks for the reply.

'{!URLFOR($Action.Case.NewCase)}' will redirect user to the overrided page.
But, on click of standard button, user is redirected to record type select page or edit page depending on the assigned record types to that user.

I want this functionality for my New button.
hitesh90hitesh90
Hi,

You have to Follow below steps for your requirement.

1. Override standard "New" button of case with your Page.
2. Create New Custon button Type = "List Button" on Case Object 

New Case Create

3. Remove standard "New" button and add Newly created "New Case" Button on related list of case using "Edit Layout"

Add NEw Case button To Layout


Thank You,
Hitesh Patel
SFDC Certified Developer & Administrator & Advanced Administrator & Sales cloud consultant
My Blog:- http://mrjavascript.blogspot.in/
GnaneswarGnaneswar
Hi Hitesh,

The custom button you created would not redirect user to the record type select page if there are multiple record types associated with him/her.
Please consider above scenario also.

Thanks!