Skip to main content
I have created a custom component on the homepage to display activities using the below code.

 

However when I click on a link within the enhanced list the page opens with in the homepage component frame. See image.

 

How do I ensure the link opens in the parent window and not just within the component frame? 

<apex:page>

<apex:enhancedList customizable="false" type="Activity" height="490" listid="00B24000003s332"/>

</apex:page>

 

How to get links within a homepage component to open in the parent window?

 

Thanks in advanced
4 respuestas
  1. 30 mar 2016, 13:42

    Try this :

    <apex:page>

    <base target="_top"/>

    <apex:enhancedList customizable="false" type="Activity" height="490" listid="00B24000003s332"/>

    </apex:page>

     

     
0/9000