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
zirosziros 

is it possible Render a specific component within apex:repeater

Hello all I have this code :
<apex:repeat value="{!familyObjectWrapper}" var="currentContact">
    <apex:outputpanel id="healthDeclarationPanel" >
       <c:vfc_health_declaration objid_Att="{!currentContact.dataObject.Id}"  id="hdComponent" />                      </apex:outputpanel>
 </apex:repeat>

The need is to display the same specific apex component several times according to repeater.
By default the components should not be rendred. 

I wanted to ask if with "ActionFunction" I can reRender a specific component to be shown ?

IF  I do a reRender of the apex outputPanel all the components in the repeater are rendered which is not good for me

 Hope for any help solving this.

Many Thanks