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
rosscorossco 

Render VisualForceArrayList

Hi

 

I have declared visualforcearraylist in my controller and am dynamically adding data to this list. How do I render/display elements from this list in my visualforce page?  I have declared the arraylist as follows:-

 

public List<List<String>> delegates {get;set;}

 Many thanks for all assistance

Regards

Ross

 

harsha__charsha__c

It's just like -----

 

         <apex:page controller="class_name">

 

<apex:pageBlockTable>

    <apex:column value="{!delegates.Field_Name1} headerValue="FieldName1"/>

      .

     .

     .

     .

</apex:pageBlockTable>

 

         </apex:page>

 

The class_name is the one where you have the list.