Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/open-admin-org/grid-sortable
- Owner: open-admin-org
- License: mit
- Created: 2021-09-08T14:42:04.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-03-12T18:36:59.000Z (8 months ago)
- Last Synced: 2024-10-12T07:10:55.047Z (26 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)
![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).