This directive allows multiple element sorting in UI-Sortable.
npm install angular-ui-sortable-multiselectionui-sortable-multiselection
==========================


Provide multiple element sorting in UI-Sortable
Simple Demo pen with selection count
Example usage:
``javascript`
// set the sortable options
$scope.sortableOptions = uiSortableMultiSelectionMethods.extendOptions({
'multiSelectOnClick': true,
start: function() {
// ...
},
stop: function() {
// ...
}
});
`html`
{item.name}
The ui argument of the available callbacks gets enriched with some extra properties as specified below:
Holds the JavaScript objects that is used as the model of the dragged items, as specified by the ng-repeat of the source ui-sortable element and the ui.item.sortableMultiSelect.selectedIndexes property.$3
Type: Array<Integer>
Holds the original indexes of the sibling items dragged.$3
Type: Array<Object>
Holds the JavaScript objects that is used as the model of the siblings of the dragged item, as specified by the ng-repeat of the source ui-sortable element and the ui.item.sortableMultiSelect.indexes property.$3
Type: Object /undefined`