Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Model Admin example to ReadMe #99

Open
jonom opened this issue Feb 20, 2015 · 0 comments
Open

Add Model Admin example to ReadMe #99

jonom opened this issue Feb 20, 2015 · 0 comments
Milestone

Comments

@jonom
Copy link
Contributor

jonom commented Feb 20, 2015

Thought it would be good to add an example to the docs on how to allow bulk editing on a Model Admin interface. Adapting instructions from BlackDog, you end up with (where MyDataObject is the class the gridfield is showing)

class MyDataObjectAdminBulkManagerExtension extends Extension {

    function updateEditForm(&$form) {
        if($this->owner->modelClass == 'MyDataObject') {
            //Update the automatically generated Model Admin interface with bulk editing capabilities
            $form->Fields()->fieldByName('MyDataObject')->getConfig()->addComponent(new GridFieldBulkManager());
        }
    }

}

and apply extension to relevant model admin instance via yml config with

MyDataObjectAdmin:
  extensions:
    - MyDataObjectAdminBulkManagerExtension
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

4 participants