Frage

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?

War es hilfreich?

Lösung

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

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top