You need to sign in to do that
Don't have an account?
Standard List controller for account is not working as expected
I used a standard list controller for account object . There are around 500 records in the db. But on the page i found only 20 records . i need to know why only 20 records is shown at the page, Also the code worked when i used custom controller. I shall attach the code i used below
<apex:page standardController="account" recordSetVar="acc" > <apex:panelGrid columns="5" id="theGrid"> <apex:repeat value="{!acc}" var="a"> {!a.id} <br/> {!a.name} </apex:repeat> </apex:panelGrid> </apex:page>
https://developer.salesforce.com/docs/atlas.en-us.pages.meta/pages/pages_controller_sosc_pagination.htm