dr-niels-sortable-list
v1.0.9
Published
This is a Polymer 3 conversion of the sortable-list element from pdgago (https://github.com/sharedlabs/sortable-list) with some minor adjustments. The readme was not updated and is still the one from the original sotable-list element!
Downloads
11
Readme
This is a Polymer 3 conversion of the sortable-list element from pdgago (https://github.com/sharedlabs/sortable-list) with some minor adjustments. The readme was not updated and is still the one from the original sotable-list element!
sortable-list
sortable-list
is a custom element that allows you to sort an element from a list by dragging it.
<sortable-list on-sort-finish="_onSortFinish" dragging="{{dragging}}">
<div>Item 1</div>
<div>Item 2</div>
<div>Item 3</div>
</sortable-list>
...
onSortFinish(event) {
const sortedItem = event.detail.target;
}
When using a dom-repeat you must specify which items are sortable.
<sortable-list sortable=".item">
<dom-repeat>
<div class="item"></div>
</dom-repeat>
</sortable-list>
TODO:
- [ ] Allow sort of elements with different sizes #2