coep / silverstripe-gridfield-multi-archive
Creates checkboxes to multi-select items to archive
Installs: 2
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:silverstripe-vendormodule
Requires
- silverstripe/framework: ~4.0
- silverstripe/vendor-plugin: ^1.0
This package is auto-updated.
Last update: 2025-03-27 01:52:20 UTC
README
Introduction
GridField component that adds checkboxes to each row in a gridfield allowing you to select multiple rows and archive those selected items.
Requirements
- Silverstripe 4.0 and above
Install
composer require coep/silverstripe-gridfield-multi-archive
Configuration
Add to gridfield config
$gridFieldConfig->addComponents(
new GridFieldCheckboxSelectComponent(),
new GridFieldMultiArchiveButton()
);
You can also add components to your modeladmin: https://docs.silverstripe.org/en/4/developer_guides/customising_the_admin_interface/modeladmin/