I have a simple parator function on a Backbone.js collection.
parator: function (topic) {
return topic.get('lastReply');
},
This is the correct field to sort. It's a date field. I would like it to be sorted in desc order. Is there an easy way to reverse the order? Perhaps I should ditch this function and just sort the collection in prior to rendering it? Any ideas or tips are of course appreciated. Thanks all.
I have a simple parator function on a Backbone.js collection.
parator: function (topic) {
return topic.get('lastReply');
},
This is the correct field to sort. It's a date field. I would like it to be sorted in desc order. Is there an easy way to reverse the order? Perhaps I should ditch this function and just sort the collection in prior to rendering it? Any ideas or tips are of course appreciated. Thanks all.
Share Improve this question asked Nov 2, 2011 at 15:38 HcabnettekHcabnettek 12.9k38 gold badges129 silver badges192 bronze badges1 Answer
Reset to default 13If it's a JavaScript "Date" field, you could do this:
parator: function(topic) {
return - topic.get('lastReply').getTime();
}
That'd return the negative of the timestamp, so that newer timestamps (bigger numbers) would e before older ones.
For a string-valued field this'd be tricky; you'd need to do something like "invert" the string character by character, or something.