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
Sivasankari MuthuSivasankari Muthu 

Wrapper class Dynamic Fields display

Hi,
<apex:pageBlockTable value="{!lstwrapper}" var="key" id="ptb">  
                     <apex:column HeaderValue="{!key.FF}" >
                     <apex:outputText value="{!key.data[key.FF]}" />
                     </apex:column>
 </apex:pageBlockTable>

HeaderValue are not display the table.Outputtext value not display in table format. full values are displayed in single column

Now I am getting the following result
User-added image
Thanks,
Balayesu ChilakalapudiBalayesu Chilakalapudi
Try like this,
<apex:pageBlockTable value="{!lstwrapper}" var="key" id="ptb"> 
  <apex:column >
    <apex:facet name="header">
        <apex:outputText value="{!key.FF}" /> 
    </apex:facet>
   <apex:outputText value="{!key.data[key.FF]}" /> 
  </apex:column>
</apex:pageBlockTable>
Sivasankari MuthuSivasankari Muthu
Hi,
Thanks for your reply.
its not working.No changes in the result.