Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7805361
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T02:12:07+00:00 2026-06-02T02:12:07+00:00

I have a problem, I seeked help in #documentcloud on Freenode and got some

  • 0

I have a problem, I seeked help in #documentcloud on Freenode and got some suggestions but still hasn’t helped me fix my problem.

Basically I have a collection, very large up to 2-3 thousand items, and it -has- to be sorted, however it only has to be sorted at certain times. Using a comparator function is fine, it keeps it sorted, but takes a lot longer when all the items are being added to the collection, as it’s resorting the entire collection each time one of the 2-3000 items are added.

I’ve tried a couple of suggestions, one being:

collection.comparator = function(object) { object.get('sortBy'); };
collection.sort();
collection.comparator = undefined;

This fails miserably and doesn’t sort at all, I’ve also tried using collection.sortBy(...) this seems to return the sorted collection, but it is of no use to me as when I try collection = collection.sortBy(...) it just dumps the sorted collection as an array into the variable collection. When I try to use collection functions or utilities I get errors like .each is undefined for collection, etc.

Any ideas?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-02T02:12:09+00:00Added an answer on June 2, 2026 at 2:12 am

    This can’t be done simply because Collection.sort actually calls Collection.comparator.

    You have basically three options

    Option One

    You could force your sort method without comparator to the models itself ( basically the same as calling .sort of your collection, but without .comparator

    // in your collection class
    
    _comparator: function(a,b) { /* comparator code */ }
    
    sorter: function() {
       // Of course you should bind this to your collection at this function 
       // and your comparator
    
       this.models.sort( _comparator ) // .models gives you the array of all models
    }
    

    Option Two

    Remove comparator each time you add something to the collection

    _comparator = function(a,b) { /* comparator code */ }
    collection.comparator = undefined
    collection.fetch({ success: function() { collection.comparator = _comparator })
    

    Options Three

    If you think a little bit ahead of your code, and simply want your collection sorted only because you want to display it this way, you could simply sort it on display

    collection.returnSorted = function () { return collection.sortBy( _comparator ) }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a problem that seemed quite trivial to me, but since hours I
I seemed to have run into a strange problem with the CCParticleSystem and the
I have problem creating new instance of excel 2007 using VBA (from Access 2002).
I have problem with fancybox. I want to write a function that will run
i have problem with autorotate on iphone i set up in all classes -
I have problem with cakephp's Session->write method. If I set a value like $_SESSION['..']
I have problem with displaying adsense ads in ie7 google adsense adds an iframe
i have problem to correctly bind data to WPF Chart. When i'm setting ItemsSource
I have problem with Oracle 9.2 and JMS. I created PL/SQL routine to send
I have problem with HTTP headers, they're encoded in ASCII and I want to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.