mirror of
https://github.com/UndefinedOffset/SortableGridField.git
synced 2024-10-22 17:05:38 +02:00
MINOR: better example
This commit is contained in:
parent
74756cad52
commit
f1a9c92784
@ -2,28 +2,38 @@ has_many Example
|
|||||||
=================
|
=================
|
||||||
|
|
||||||
```php
|
```php
|
||||||
|
<?php
|
||||||
|
|
||||||
/*** TestPage.php ***/
|
/*** TestPage.php ***/
|
||||||
use SilverStripe\Forms\GridField\GridField;
|
use SilverStripe\Forms\GridField\GridField;
|
||||||
use SilverStripe\Forms\GridField\GridFieldConfig_RecordEditor;
|
use SilverStripe\Forms\GridField\GridFieldConfig_RelationEditor;
|
||||||
use UndefinedOffset\SortableGridField\Forms\GridFieldSortableRows;
|
use UndefinedOffset\SortableGridField\Forms\GridFieldSortableRows;
|
||||||
|
|
||||||
class TestPage extends Page
|
class TestPage extends Page
|
||||||
{
|
{
|
||||||
private static $has_many = [
|
private static $has_many = [
|
||||||
'TestObjects' => 'TestObject',
|
'TestObjects' => 'TestObject',
|
||||||
];
|
];
|
||||||
|
|
||||||
public function getCMSFields()
|
public function getCMSFields()
|
||||||
{
|
{
|
||||||
$fields = parent::getCMSFields();
|
$fields = parent::getCMSFields();
|
||||||
|
|
||||||
$conf = GridFieldConfig_RecordEditor::create(10);
|
$conf = GridFieldConfig_RelationEditor::create(10);
|
||||||
$conf->addComponent(new GridFieldSortableRows('SortOrder'));
|
$conf->addComponent(new GridFieldSortableRows('SortOrder'));
|
||||||
|
|
||||||
$fields->addFieldToTab('Root.TestObjects', new GridField('TestObjects', 'TestObjects', $this->TestObjects(), $conf));
|
$fields->addFieldToTab(
|
||||||
|
'Root.TestObjects',
|
||||||
|
GridField::create(
|
||||||
|
'TestObjects',
|
||||||
|
'TestObjects',
|
||||||
|
$this->TestObjects(),
|
||||||
|
$conf
|
||||||
|
)
|
||||||
|
);
|
||||||
|
|
||||||
return $fields;
|
return $fields;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -32,15 +42,18 @@ use SilverStripe\ORM\DataObject;
|
|||||||
|
|
||||||
class TestObject extends DataObject
|
class TestObject extends DataObject
|
||||||
{
|
{
|
||||||
private static $db = [
|
private static $db = [
|
||||||
'Title' => 'Text',
|
'Title' => 'Text',
|
||||||
'SortOrder' => 'Int',
|
'SortOrder' => 'Int',
|
||||||
];
|
];
|
||||||
|
|
||||||
|
private static $indexes = [
|
||||||
|
'SortOrder' => true,
|
||||||
|
];
|
||||||
private static $has_one = [
|
private static $has_one = [
|
||||||
'Parent' => 'TestPage',
|
'Parent' => 'TestPage',
|
||||||
];
|
];
|
||||||
|
|
||||||
private static $default_sort = 'SortOrder';
|
private static $default_sort = 'SortOrder';
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
Loading…
Reference in New Issue
Block a user