Home SALESFORCE How to create standard ‘New’ button on Visualforce page

How to create standard ‘New’ button on Visualforce page?

Please follow the below instructions:SFDC - icons

<apex:outputLink value=”{!URLFOR($Action.Account.New)}”>Create New Account</apex:outputLink>

use the same way to other objects (both Standard/Custom Objects) to change “Account” to whatever object if you need.

For Example:
$Action.Account.New   (Salesforce Standard Object)
$Action.Opportunity.New   (Salesforce Standard Object)
$Action.Applications__c.New   (Salesforce Custom Object)

 

 

You may also like

Leave a Comment