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
l.trincil.trinci 

Visualpage Repeat question

All i want to do is Don't repeat the red part of the code, and i must keep it in the same position of the it:

how can I do? 

 

<apex:pageblock >
<apex:repeat value="{!ExpOth}" var="experience" id="RepExp" rendered="{!IF(CONTAINS('skill','Client'), false, true)}">
<apex:repeat value="{!experience.Skills_Techical__r}" var="skillexperience" id="RepSkillExp" rendered="{!IF(CONTAINS('skill','Client'), false, true)}">

 

<apex:outputtext value="Skill aggiuntivi" rendered="{!IF(experience.Skills_Techical__r=null ,false,true)}" escape="false" />&nbsp;
<hr>
</hr>

 

 

<apex:outputtext value="Skill:" rendered="{!IF(experience.Skills_Techical__r=null ,false,true)}" escape="false" />
<apex:outputfield value="{!skillexperience.Position_name__c}"/>
- &nbsp; <apex:outputfield value="{!skillexperience.Skill_Area_name__c}"/><br/>



</apex:repeat>
</apex:repeat>
</apex:pageblock>

 

 

Thanks in advance

Best Answer chosen by Admin (Salesforce Developers) 
Abhay AroraAbhay Arora

You have no other option than moving it out of repeat and put it in panel