Wednesday, February 22, 2017

Visualforce - Beyond Basics Series 44 - Inline VF Page Redirect

What is Inline VF Page ?

Inline Visualforce page means, a technique of embedding visualforce page into the main detail/edit page of standard layout for a record.

How to redirect or refresh the page ?

This inline VF Page lives inside a iframe. So, when you do redirect or reload. the detail/edit page won't get affected. you may try this now, if you haven't faced this.

Where is the Code ?


<apex:page standardController="Opportunity">
<button onclick="top.location.href = '/{!Opportunity.Id}'">
Click here to refresh
</button>
</apex:page>
view raw gistfile1.txt hosted with ❤ by GitHub

Any Screenshots ?



Walk through in a video ?


No comments:

Post a Comment

Thanks for reading my blog !