function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Anup Kabra 2Anup Kabra 2 

How to edit a record in inline visualforce page and refresh the Detail page in lightning

I am using a inline visual force page as a related list for Account in lightning. Once I click on edit in visualforce page, it pops up a new window where I can edit. But, once I edit and click on save or cancel option, I don't see my visualforce page in the account detail page.

I am using command link for editing.

<apex:commandLink action="{!URLFOR($Action.Customobject__c .edit, a.id) }" >Edit</apex:commandLink>

Thanks in advance.