Don't have an account?
Search for an answer or ask a question of the zone or Customer Support.
You need to sign in to do that
Sign in to start searching questions
Signup for a Developer Edition
Sign in to start a discussion
<apex:page standardController="Account" recordSetVar="Accounts"> <style> th{ width: 25%;} </style> <apex:form > <html> <body> <table width="100%" border="2"> <tr> <th>Colomn One</th> <th>Colomn Two</th> <th>Colomn Three</th> <th>Colomn four</th> </tr> <apex:repeat value="{!Accounts}" var="ac"> <tr> <td> {!ac.id}</td> <td> {!ac.Name}</td> <td> {!ac.Type}</td> <td> {!ac.AccountNumber}</td> </tr> </apex:repeat> </table> </body> </html> </apex:form> </apex:page>
Try this Code
Here are the output result.
Regards,
Akshay
If this answers your query please mark this question as a solved so that it can be filtered out from unsolved questions.
All Answers
try to post what exactly you are doing,
repeaters dont have any restriction on displaying data.
Thanks
SamadhanForce
Try this Code
Here are the output result.
Regards,
Akshay
If this answers your query please mark this question as a solved so that it can be filtered out from unsolved questions.
Thanks for selecting my answer as a best. It's my pleasure to help you!
Regards,
Akshay