mirror of
https://github.com/UndefinedOffset/SortableGridField.git
synced 2024-10-22 17:05:38 +02:00
Merge pull request #130 from samandeggs/patch-1
Update ModelAdminExample.md
This commit is contained in:
commit
7bdeebb6cd
@ -21,11 +21,12 @@ class MyModelAdmin extends ModelAdmin
|
|||||||
{
|
{
|
||||||
$form = parent::getEditForm($id, $fields);
|
$form = parent::getEditForm($id, $fields);
|
||||||
|
|
||||||
//This check is simply to ensure you are on the managed model you want adjust accordingly
|
// This check is simply to ensure you are on the managed model you want adjust accordingly
|
||||||
if($this->modelClass === MATestObject::class) {
|
if ($this->modelClass === MATestObject::class) {
|
||||||
$gridField = $form->Fields()->dataFieldByName($this->sanitiseClassName($this->modelClass))
|
$gridField = $form->Fields()->dataFieldByName($this->sanitiseClassName($this->modelClass));
|
||||||
//This is just a precaution to ensure we got a GridField from dataFieldByName() which you should have
|
|
||||||
if($gridField instanceof GridField) {
|
// This is just a precaution to ensure we got a GridField from dataFieldByName() which you should have
|
||||||
|
if ($gridField instanceof GridField) {
|
||||||
$gridField->getConfig()->addComponent(new GridFieldSortableRows('SortOrder'));
|
$gridField->getConfig()->addComponent(new GridFieldSortableRows('SortOrder'));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user