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
tobias.brandtobias.brand 

Visualforce standard controller "user" - not showing all records

I created a visualforce page with standard controller "user". The table does not show all users. I can only see the first 20 users.

<apex:page standardController="User" recordSetVar="User">

<apex:pageBlock title="Closed Won">
<apex:pageBlockSection title="DACH">
<apex:pageBlockTable value="{!user}" var="u" rows="200" >
<apex:column value="{!u.name}"

...

Any help welcome!
bob_buzzardbob_buzzard
This is documented behaviour for the standard list controller:

https://www.salesforce.com/us/developer/docs/pages/Content/pages_controller_sosc_pagination.htm

"By default, a list controller returns 20 records on the page. To control the number of records displayed on each page, use a controller extension to set the pageSize."