You need to sign in to do that
Don't have an account?
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
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.