mirror of
https://github.com/UndefinedOffset/SortableGridField.git
synced 2024-10-22 17:05:38 +02:00
commit
ee5f10e1e7
@ -2,28 +2,37 @@ has_many Example
|
||||
=================
|
||||
|
||||
```php
|
||||
|
||||
/*** TestPage.php ***/
|
||||
use SilverStripe\Forms\GridField\GridField;
|
||||
use SilverStripe\Forms\GridField\GridFieldConfig_RecordEditor;
|
||||
use SilverStripe\Forms\GridField\GridFieldConfig_RelationEditor;
|
||||
use UndefinedOffset\SortableGridField\Forms\GridFieldSortableRows;
|
||||
|
||||
class TestPage extends Page
|
||||
{
|
||||
private static $has_many = [
|
||||
'TestObjects' => 'TestObject',
|
||||
];
|
||||
private static $has_many = [
|
||||
'TestObjects' => 'TestObject',
|
||||
];
|
||||
|
||||
public function getCMSFields()
|
||||
{
|
||||
$fields = parent::getCMSFields();
|
||||
|
||||
$conf = GridFieldConfig_RecordEditor::create(10);
|
||||
$conf->addComponent(new GridFieldSortableRows('SortOrder'));
|
||||
public function getCMSFields()
|
||||
{
|
||||
$fields = parent::getCMSFields();
|
||||
|
||||
$conf = GridFieldConfig_RelationEditor::create(10);
|
||||
$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 +41,18 @@ use SilverStripe\ORM\DataObject;
|
||||
|
||||
class TestObject extends DataObject
|
||||
{
|
||||
private static $db = [
|
||||
'Title' => 'Text',
|
||||
'SortOrder' => 'Int',
|
||||
];
|
||||
private static $db = [
|
||||
'Title' => 'Text',
|
||||
'SortOrder' => 'Int',
|
||||
];
|
||||
|
||||
private static $indexes = [
|
||||
'SortOrder' => true,
|
||||
];
|
||||
private static $has_one = [
|
||||
'Parent' => 'TestPage',
|
||||
];
|
||||
|
||||
private static $default_sort = 'SortOrder';
|
||||
private static $default_sort = 'SortOrder';
|
||||
}
|
||||
```
|
||||
|
Loading…
Reference in New Issue
Block a user