Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/open-admin-org/grid-sortable

Sortable rows for grid view
https://github.com/open-admin-org/grid-sortable

Last synced: 9 days ago
JSON representation

Sortable rows for grid view

Awesome Lists containing this project

README

        

Open-Admin - grid-sortable
======

This extension can help you sort by dragging the rows of the data list, the front end is based on [sortableJS](https://github.com/SortableJS/Sortable), and the back end is based on [eloquent-sortable](https://github.com/spatie/eloquent-sortable)

![grid-sortable](https://user-images.githubusercontent.com/86517067/132530216-926934b2-754a-4ec6-9f29-67523aedaf67.gif)

## Installation

```shell
composer require open-admin-ext/grid-sortable
```

## Usage

Define your model

```php
'order_column',
'sort_when_creating' => true,
];
}
```

Use in grid

```php
$grid = new Grid(new MyModel);

$grid->sortable();
```

This will add a column to the grid. After dragging one row, a `Save order` button will appear at the top of the grid. Click to save order.

## Translation

The default text for the button is `Save order`. If you use an other language, such as Simplified Chinese, you can add a translation to the `resources/lang/zh-CN.json` file.

```json
{
"Save order": "保存排序"
}
```

License
------------
Licensed under [The MIT License (MIT)](LICENSE).