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 ?
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<apex:page standardController="Opportunity"> | |
<button onclick="top.location.href = '/{!Opportunity.Id}'"> | |
Click here to refresh | |
</button> | |
</apex:page> |
No comments:
Post a Comment
Thanks for reading my blog !