• Daljeet Singh
  • NEWBIE
  • 0 Points
  • Member since 2011

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 0
    Replies

<apex:pageblockTable id="JobList1" value="{!searchResultsRows}" var="src" >
 
             <apex:repeat value="{!src.searchRow}" var="row">   
            <apex:column >
          
               <apex:facet name="header"><apex:outputLabel value="{!row.label}" /></apex:facet>
              
                <apex:outputText value="{!row.columnValue}"/>
               
               
            </apex:column>
           </apex:repeat> 
          
          </apex:pageblockTable>

 

 

 

The header value is not getting populated can anyone please help me on that ....