knockout-sortablejs icon indicating copy to clipboard operation
knockout-sortablejs copied to clipboard

A Knockout.js binding to SortableJS.

Results 11 knockout-sortablejs issues
Sort by recently updated
recently updated
newest added
trafficstars

Sorting is not working with virtual elements, aka KO comments. Whenever a new comment data bind is rendered, the sorting ends up putting the new element first instead of putting...

I define a onMove function to prevent list sorting this way: ``` onMove(event) { console.log("onMove called"); return false; } ``` and pass it to knockout-sortablejs: ``` ``` When I move...

- Fixes issue with data-bind: sortable element for a non-computed observable array. Dragging an item from a smaller index (eg 0) to a greater index (eg 10) places the element...

The problem seems to be in knockout-sortable.js line 124: ```javascript moveItem(itemVM, removeOperation.collection, addOperation.collection, addOperation.event.clone, addOperation.event); ``` The fourth parameter seems to be the DOM-node of the hovering element when pulling...

Issue at #7 Solution is check the group option, if contains pull = 'clone' then update the `from` source.

Hi, Thanks for this wonderfull binding. Only, the following line makes the sorting go wrong when i sort down: ``` if (e.item.previousElementSibling) { // Uit want foute sorting newIndex =...

This change resolves an issue with bundling knockout sortable plugin. The original error message after bundling was about undefined define function.

Hi, My list is observable, and depending on the type, sorting should be disabled or enabled, but it seems that when my boolean is updated, it is not in sortable:...