From ec748699c05861b0592b486961303ae639f5c92a Mon Sep 17 00:00:00 2001 From: Nate Date: Wed, 30 Oct 2024 13:53:36 +1300 Subject: [PATCH] DOC Add details about Reports Admin update https://github.com/silverstripe/silverstripe-reports/issues/196 --- .gitignore | 1 + en/08_Changelogs/5.4.0.md | 13 +++++++++++++ 2 files changed, 14 insertions(+) diff --git a/.gitignore b/.gitignore index 3a9875b46..7c5075b52 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ /vendor/ composer.lock +.vscode diff --git a/en/08_Changelogs/5.4.0.md b/en/08_Changelogs/5.4.0.md index 9a678e977..1c26846f7 100644 --- a/en/08_Changelogs/5.4.0.md +++ b/en/08_Changelogs/5.4.0.md @@ -8,6 +8,7 @@ title: 5.4.0 (unreleased) - [Features and enhancements](#features-and-enhancements) - [Option to change `ClassName` column from enum to varchar](#classname-varchar) + - [Reports Quality of life updates](#reports-quality-of-life-updates) - [Other new features](#other-new-features) - [API changes](#api-changes) - [Bug fixes](#bug-fixes) @@ -32,6 +33,18 @@ SilverStripe\ORM\FieldType\DBPolymorphicForeignKey: Class: "DBClassNameVarchar('SilverStripe\\ORM\\DataObject', ['index' => false])" ``` +### Reports Quality of life updates + +Numerous slight adjustments have been made to the base ReportAdmin class for a better experience. + +Such changes include: + - Search capability added (Making use of `PartialMatchFilter`) + - Sorting by columns now posssible + - Pagination capability added + - `Description` is now displayed on in the list as a column + - Default Sort is now `Title ASC` + + ### Other new features - A new [`BaseKernel::getBooted()`](api:SilverStripe\Core\BaseKernel::getBooted()) method has been added for checking whether the kernel has been booted yet or not.