Skip to main content

Posts

Showing posts with the label apex:repeat in salesforce

Uses Of Apex Repeat

An iteration component that allows you to display the contents of a collection according to a structure that you specify. The collection can include up to 1,000 items. This component cannot be used as a direct child of the following components: <apex:dataTable> <apex:pageBlockTable> <apex:panelBar> <apex:selectCheckboxes> <apex:selectList> <apex:selectRadio> <apex:tabPanel> Suposse there is a requirement, you need to display Five accounts with thier Contacts in a visualforce page.Format should be like this image How will you do it? It is very simple, just use repeat in visualforce page. Here is visualforce page and controller <apex:page controller="UseofRepeatOnAccountController" sidebar="false" tabStyle="Account">     <apex:form >     <apex:pageBlock title="Accounts with assoicated Contacts">         <apex:repeat value="{!accountList }" var="acc">        ...