Domanda

I have a custom VisualForce page and would like via javascript to get the url to create a new account/contact.

I know I can do the following in the main apex code but I want to do something dynamically. Create New Account

What is the easiest way to get the url to create a new object via javascript?

È stato utile?

Soluzione

You can use this code in Javascript (if your script tag is inside a visualforce page):

var newAccountEndpoint = '{!URLFOR($Action.Account.New)}';
var newOpptyEndpoint = '{!URLFOR($Action.Opportunity.New)}';

Or as I stated before refer to pre made list of standard salesforce object prefixes

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top