mirror of
https://github.com/UndefinedOffset/SortableGridField.git
synced 2024-10-22 17:05:38 +02:00
Updated documentation and examples to correctly state namespaces used.
This commit is contained in:
parent
e5d442cabe
commit
21a6f3c8e8
13
README.md
13
README.md
@ -29,10 +29,11 @@ public function getMyManyManyRelationship() {
|
|||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
To enable drag and drop sorting on the grid field add the following to your grid field's config
|
To enable drag and drop sorting on the grid field add the following to your grid field's config, also make sure you add the namespace ``UndefinedOffset\SortableGridField\Forms`` to your file.
|
||||||
*Grid Field Config*
|
|
||||||
|
|
||||||
```php
|
```php
|
||||||
|
use UndefinedOffset\SortableGridField\Forms\GridFieldSortableRows; //Namespaces should be added to the top of your file
|
||||||
|
|
||||||
$myGridConfig->addComponent(new GridFieldSortableRows('{Column to store sort}'));
|
$myGridConfig->addComponent(new GridFieldSortableRows('{Column to store sort}'));
|
||||||
```
|
```
|
||||||
|
|
||||||
@ -49,6 +50,8 @@ GridFieldSortableRows provides 4 "events" onBeforeGridFieldRowSort(), onAfterGri
|
|||||||
#### Appending to the top instead of the bottom
|
#### Appending to the top instead of the bottom
|
||||||
By default GridFieldSortableRows appends to the bottom of the list for performance on large data sets, however you can set new records to append new records to the top by calling setAppendToTop(true) on your GridFieldSortableRows instance.
|
By default GridFieldSortableRows appends to the bottom of the list for performance on large data sets, however you can set new records to append new records to the top by calling setAppendToTop(true) on your GridFieldSortableRows instance.
|
||||||
```php
|
```php
|
||||||
|
use UndefinedOffset\SortableGridField\Forms\GridFieldSortableRows; //Namespaces should be added to the top of your file
|
||||||
|
|
||||||
$myGridConfig->addComponent($sortable=new GridFieldSortableRows('SortOrder'));
|
$myGridConfig->addComponent($sortable=new GridFieldSortableRows('SortOrder'));
|
||||||
$sortable->setAppendToTop(true);
|
$sortable->setAppendToTop(true);
|
||||||
```
|
```
|
||||||
@ -56,6 +59,8 @@ $sortable->setAppendToTop(true);
|
|||||||
#### Working with versioned records
|
#### Working with versioned records
|
||||||
By default GridFieldSortableRows does not update any other stage for versioned than the base stage. However you can enable this by calling setUpdateVersionedStage() and passing in the name of the stage you want to update along with the base stage. For example passing in "Live" will also update the "Live" stage when any sort happens.
|
By default GridFieldSortableRows does not update any other stage for versioned than the base stage. However you can enable this by calling setUpdateVersionedStage() and passing in the name of the stage you want to update along with the base stage. For example passing in "Live" will also update the "Live" stage when any sort happens.
|
||||||
```php
|
```php
|
||||||
|
use UndefinedOffset\SortableGridField\Forms\GridFieldSortableRows; //Namespaces should be added to the top of your file
|
||||||
|
|
||||||
$myGridConfig->addComponent($sortable=new GridFieldSortableRows('SortOrder'));
|
$myGridConfig->addComponent($sortable=new GridFieldSortableRows('SortOrder'));
|
||||||
$sortable->setUpdateVersionedStage('Live');
|
$sortable->setUpdateVersionedStage('Live');
|
||||||
```
|
```
|
||||||
@ -63,6 +68,8 @@ $sortable->setUpdateVersionedStage('Live');
|
|||||||
#### Overriding the default relationship name
|
#### Overriding the default relationship name
|
||||||
By default the relationship name comes from the name of the GridField, however you can override this lookup by calling setCustomRelationName() and passing in the name of the relationship. This allows for you to have multiple GridFields on the same form interacting with the same many_many list maybe filtered slightly differently.
|
By default the relationship name comes from the name of the GridField, however you can override this lookup by calling setCustomRelationName() and passing in the name of the relationship. This allows for you to have multiple GridFields on the same form interacting with the same many_many list maybe filtered slightly differently.
|
||||||
```php
|
```php
|
||||||
|
use UndefinedOffset\SortableGridField\Forms\GridFieldSortableRows; //Namespaces should be added to the top of your file
|
||||||
|
|
||||||
$myGridConfig->addComponent($sortable=new GridFieldSortableRows('SortOrder'));
|
$myGridConfig->addComponent($sortable=new GridFieldSortableRows('SortOrder'));
|
||||||
$sortable->setCustomRelationName('MyRelationship');
|
$sortable->setCustomRelationName('MyRelationship');
|
||||||
|
|
||||||
@ -74,6 +81,8 @@ When you're reporting an issue please ensure you specify what version of SilverS
|
|||||||
### Notes
|
### Notes
|
||||||
* When using with GridFieldManyRelationHandler make sure that you add GridFieldSortableRows to your config before for example GridFieldManyRelationHandler:
|
* When using with GridFieldManyRelationHandler make sure that you add GridFieldSortableRows to your config before for example GridFieldManyRelationHandler:
|
||||||
```php
|
```php
|
||||||
|
use UndefinedOffset\SortableGridField\Forms\GridFieldSortableRows; //Namespaces should be added to the top of your file
|
||||||
|
|
||||||
$config->addComponent(new GridFieldSortableRows('SortOrder'), 'GridFieldManyRelationHandler');
|
$config->addComponent(new GridFieldSortableRows('SortOrder'), 'GridFieldManyRelationHandler');
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -2,6 +2,10 @@ has_many Example
|
|||||||
=================
|
=================
|
||||||
```php
|
```php
|
||||||
/*** TestPage.php ***/
|
/*** TestPage.php ***/
|
||||||
|
use SilverStripe\Forms\GridField\GridField;
|
||||||
|
use SilverStripe\Forms\GridField\GridFieldConfig_RecordEditor;
|
||||||
|
use UndefinedOffset\SortableGridField\Forms\GridFieldSortableRows;
|
||||||
|
|
||||||
class TestPage extends Page {
|
class TestPage extends Page {
|
||||||
private static $has_many=array(
|
private static $has_many=array(
|
||||||
'TestObjects'=>'TestObject'
|
'TestObjects'=>'TestObject'
|
||||||
@ -10,7 +14,7 @@ class TestPage extends Page {
|
|||||||
public function getCMSFields() {
|
public function getCMSFields() {
|
||||||
$fields=parent::getCMSFields();
|
$fields=parent::getCMSFields();
|
||||||
|
|
||||||
$conf=GridFieldConfig_RelationEditor::create(10);
|
$conf=GridFieldConfig_RecordEditor::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', new GridField('TestObjects', 'TestObjects', $this->TestObjects(), $conf));
|
||||||
@ -21,6 +25,8 @@ class TestPage extends Page {
|
|||||||
|
|
||||||
|
|
||||||
/*** TestObject.php ***/
|
/*** TestObject.php ***/
|
||||||
|
use SilverStripe\ORM\DataObject;
|
||||||
|
|
||||||
class TestObject extends DataObject {
|
class TestObject extends DataObject {
|
||||||
private static $db=array(
|
private static $db=array(
|
||||||
'Title'=>'Text',
|
'Title'=>'Text',
|
||||||
|
@ -2,6 +2,10 @@ many_many Example
|
|||||||
=================
|
=================
|
||||||
```php
|
```php
|
||||||
/*** TestPage.php ***/
|
/*** TestPage.php ***/
|
||||||
|
use SilverStripe\Forms\GridField\GridField;
|
||||||
|
use SilverStripe\Forms\GridField\GridFieldConfig_RelationEditor;
|
||||||
|
use UndefinedOffset\SortableGridField\Forms\GridFieldSortableRows;
|
||||||
|
|
||||||
class TestPage extends Page {
|
class TestPage extends Page {
|
||||||
private static $many_many=array(
|
private static $many_many=array(
|
||||||
'TestObjects'=>'TestObject'
|
'TestObjects'=>'TestObject'
|
||||||
@ -32,6 +36,8 @@ class TestPage extends Page {
|
|||||||
|
|
||||||
|
|
||||||
/*** TestObject.php ***/
|
/*** TestObject.php ***/
|
||||||
|
use SilverStripe\ORM\DataObject;
|
||||||
|
|
||||||
class TestObject extends DataObject {
|
class TestObject extends DataObject {
|
||||||
private static $db=array(
|
private static $db=array(
|
||||||
'Title'=>'Text'
|
'Title'=>'Text'
|
||||||
|
@ -2,6 +2,10 @@ ModelAdmin implementation Example
|
|||||||
=================
|
=================
|
||||||
```php
|
```php
|
||||||
/**** MyModelAdmin.php ****/
|
/**** MyModelAdmin.php ****/
|
||||||
|
use SilverStripe\Admin\ModelAdmin;
|
||||||
|
use SilverStripe\Forms\GridField\GridField;
|
||||||
|
use UndefinedOffset\SortableGridField\Forms\GridFieldSortableRows;
|
||||||
|
|
||||||
class MyModelAdmin extends ModelAdmin {
|
class MyModelAdmin extends ModelAdmin {
|
||||||
private static $menu_title='My Model Admin';
|
private static $menu_title='My Model Admin';
|
||||||
private static $url_segment='my-model-admin';
|
private static $url_segment='my-model-admin';
|
||||||
@ -26,6 +30,8 @@ class MyModelAdmin extends ModelAdmin {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**** MATestObject.php ****/
|
/**** MATestObject.php ****/
|
||||||
|
use SilverStripe\ORM\DataObject;
|
||||||
|
|
||||||
class MATestObject extends DataObject {
|
class MATestObject extends DataObject {
|
||||||
private static $db=array(
|
private static $db=array(
|
||||||
'Title'=>'Varchar',
|
'Title'=>'Varchar',
|
||||||
|
Loading…
Reference in New Issue
Block a user