With Backbone.js I've got a collection set up with a comparator function. It's nicely sorting the models, but I'd like to reverse the order. How can I have the models be sorted in a descending rather than ascending manner?
feedback
|
|
Well, you can return negative values from comparator. If we take, for example, the example from Backbone's site and want to reverse the order, it will look like this:
| |||||||||
feedback
|
|
Backbone.js's collection comparator relies on the Underscore.js method _.sortBy. The way sortBy is implemented ends up "wrapping" up javascript .sort() in a way that makes sorting strings in reverse difficult. Simple negation of the string ends up returning NaN and breaks the sort. If you need to perform a reverse sort with Strings, such as reverse alphabetical sort, here's a really hackish way of doing it:
It's by no means pretty, but it is a "string negator". If you don't have any qualms with modifying native object types in javascript, you could make you code clearer by extracting the string negator and adding it as a method on String.Prototype. However you probably only want to do this if you know what you are doing, because modifying native object types in javascript can have unforeseen consequences. | |||||||||
feedback
|
|
Modify your comparator function to return some reversely proporitional value instead of returning the data that you are currently. Some code from : http://documentcloud.github.com/backbone/#Collection-comparator Example:
| ||||
|
feedback
|
|
My solution was to reverse results after sort. To prevent double rendering first sort with silent, then trigger 'reset'.
| |||||||||||
feedback
|