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
turbo2ohturbo2oh 

problems rendering within iframe

I have a tab panel with iframes for each tab. After a lookup field is selected I want to render hidden content within the iframe.  It toggles the hidden outputpanel to visible correctly but it will break out of the frame and no longer show the tabs at the top. Any ideas what might be causing this?

 

To test I'm simply using <apex:actionSupport event="onchange" action="{!testView}"/> on a inputfield lookup.

 

The testview method just toggles a boolean 'showit) to true to display:

 

<apex:outputPanel rendered="{!showit}">test1</apex:outputPanel>

 

It then appears correctly but I've lost my tabs.

NikuNiku

Please check that the in the action method is realy value changing or not ?? do some debuging. If possible please paste come code here ... so we will have clear picture here..