https://github.com/open-admin-org/grid-sortable
Sortable rows for grid view
https://github.com/open-admin-org/grid-sortable
Last synced: 13 days ago
JSON representation
Sortable rows for grid view
- Host: GitHub
- URL: https://github.com/open-admin-org/grid-sortable
- Owner: open-admin-org
- License: mit
- Created: 2021-09-08T14:42:04.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2025-06-05T18:53:00.000Z (29 days ago)
- Last Synced: 2025-06-05T19:44:06.491Z (29 days ago)
- Language: PHP
- Homepage:
- Size: 5.86 KB
- Stars: 4
- Watchers: 1
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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)

## 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).