When I click upload file on UploadField::create.
It open dialog (admin/pages/edit/EditForm/field/Images/select) where my file show in paginated data grid.
It show 8 file per page.
How to change it to 20 file per page ?
We've moved the forum!
Please use forum.silverstripe.org for any new questions
(announcement).
The forum archive will stick around, but will be read only.
You can also use our Slack channel
or StackOverflow to ask for help.
Check out our community overview for more options to contribute.
Unfotunately, this setting is not configurable. The value of 8 is hardcoded on line 1604 of UploadField.php:
$config->addComponent(new GridFieldPaginator(8));
Might be something to submit as a pull request, but it was probably done for a reason -- perhaps due to the height constraint of the popup?
Thank you
Such a solution is fine with me