SortableJS / knockout-sortablejs

A Knockout.js binding to SortableJS.
22 stars 19 forks source link

Databinding issue #4

Open prowseed opened 8 years ago

prowseed commented 8 years ago

Hello, I have an array of items that I populate dynamically this.imgs = ko.observableArray([]); or manually by the user.

Each element have an ability to be deleted/removed from list, simple self.imgs.remove(el); works as long as dragging event occurs, then last deleted item again appear in DOM and Sorting ability for whole list is somehow broken. Seems like there is some caching/databind issue, not sure though.

Thank you.