
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>
Thanks in advanced
4 respuestas
Try this :
<apex:page>
<base target="_top"/>
<apex:enhancedList customizable="false" type="Activity" height="490" listid="00B24000003s332"/>
</apex:page>