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
JK84JK84 

Home page component issue with Chrome 28.0

Hi,

 

I've written a simple home page component and the component is calling a VF page, which inturn calls an apex controller.

 

The issue is that the code in the home page component is getting executed twice when opened in Chrome 28.0, while its working perfectly in Mozilla firefox and IE.

 

The homepage component has an iFrame which calls a VF page and the VF page calls a custom controller.

 

Any idea if this is a known issue ? I couldn't find it in the list of known issues, so was wondering where I was going wrong..... (I've taken off all the code and retained just a system.debug statement in the apex controller and even now the code is getting executed twice)

 

Home page component code

 

<iframe id="myIframe" src="/apex/NewAuditor" frameborder="0" height="0" width="0"> </iframe>

 

VF Page

 

<apex:page controller="NewAuditController" action="{!updateData}">
 
</apex:page>

 

Apex controller

 

This just has the action method with a single system.debug statement.