You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
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.
The text was updated successfully, but these errors were encountered: