Welcome to my blog

I have been working with Salesforce for quite a while, so don’t hesitate to contact me if you have any questions or want some advice.

s f

Subscribe
Follow Us
h

Redirect to Visualforce page from Custom Button using OnClick Javascript

 . Adminstrator  . Redirect to Visualforce page from Custom Button using OnClick Javascript

Redirect to Visualforce page from Custom Button using OnClick Javascript

You have to write javascipt code to redirect to VF page standard custom button. Should use window.location function to redirect to VF page.

Screen Shot 2017-03-20 at 6.34.21 PM.png

Example:

{!REQUIRESCRIPT('/soap/ajax/26.0/connection.js')} 
var accReq = "{!Account.Name}";
if(accReq != '') {
window.location="/apex/VisualforceName?id={!Account.Id}";
}
else {
alert('Name is mandatory');
window.location.reload(); 
}

Post a Comment