Skip to content
This repository was archived by the owner on Oct 17, 2025. It is now read-only.

restruct/silverstripe-gridfieldsitetreebuttons

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Sitetree Buttons for GridField

Not needed anymore, from Silverstripe 4/5 onwards regular Gridfield addnew button works fine

ARCHIVED (add issue to some Restruct module to let me know if you still need this module)

Modifies GridFields & GridField detail forms to use standard page edit form (with versioning, history & settings).

Best used in combination with:

Or use/subclass the preconfigured GridfieldPages module, which contains both the excludechildren module and this sitetreebuttons module:

Screenshot

Manage (add & edit) SiteTree items from a GridField:

Usage

In GridFieldConfig, replace GridFieldAddNewButton('toolbar-header-right') with GridFieldAddNewSiteTreeItemButton('toolbar-header-right') and new GridFieldDetailForm() with GridFieldEditSiteTreeItemButton()

Like this:

$gfconf = GridFieldConfig_RecordEditor::create();
$gfconf->removeComponentsByType('GridFieldAddNewButton');
$gfconf->addComponent(new GridFieldAddNewSiteTreeItemButton('toolbar-header-right'));
$gfconf->removeComponentsByType('GridFieldAddNewButton');
$gfconf->addComponent(new GridFieldEditSiteTreeItemButton());

Requirements

SilverStripe 4.0 or higher

Pro tip

Use/subclass the prefabricated GridfieldPages module as a all-in-one base:

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 2

  •  
  •  

Languages