Allow to sort an ObservableArray The current work around is to use the native array function Array.prototype.sort.call(myArray, myComparer);
It will feel more natural instead of always having to think that in the back you transform everything in an ObservableObject or ObservableArray. And myArray.sort(myComparer) is also easier to read.
Hi Yann, If we provided an implementation, we'd likely do something similar, so while I'm not sure it would save you much, I'll leave this one open to see if others want to vote this one up.