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
CloudPower1CloudPower1 

Delay in inline VF page loading in Standard detail page of Sobject

I have used an inline VF page inside a standard detail page of an Sobject. The Inline VF page is taking more tiem to load even after the standard page is already loaded.

Please let me know if there is any approach to handle this delay in page load of Inline VF page. Basically the end user is not happy for the the time taking to load inline VF page 
ShashForceShashForce
Hi,

Please check if the VF page shows the same slow performance when opened as a stand-alone page. If the page is still slow when opened as stand-alone, you need to debug what is causing the delay in the VF code. Some factors I can suggest to check are long running SOQL queries, multiple DML operations, extensive javascript etc.

Thanks,
Shashank
CloudPower1CloudPower1
For testing i have created a normal VF page.
<apex:page standardController="Account">  
  <h1>Congratulations</h1>
  This is your new Page  
</apex:page>

It is still taking same time to load the inline VF page.
I guess the inline VF page is integrated within Iframe and it takes some to load after the detail page components are loaded.
CloudPower1CloudPower1
Is there any way we can overcome this issue?