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

  • SEARCH
  • Home
  • 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 8434607
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T06:42:10+00:00 2026-06-10T06:42:10+00:00

At the moment I’m using JavaScript’s native sort() method to do my sorting in

  • 0

At the moment I’m using JavaScript’s native sort() method to do my sorting in Ember, but in reality I know I should be using Ember’s own sorting, but unfortunately I have absolutely no idea how to use it.

I don’t want to waste people’s time in explaining it for me (unless you’re a masochist), but if anybody knows of a fabulous article on how to sort a collection of models in EmberJS, then it would be more than appreciated!

At the moment I have something like the following, where I’m just about the implement the sorting using the native sort again, but I stopped myself there because I want to learn the proper way.

SortOption: Ember.View.extend(
{
    template:   Ember.Handlebars.compile('<li><a href="javascript:void(0);">{{ option }}</a></li>'),
    option:     null,

    click: function()
    {
        var rootView    = this.nearestWithProperty('people');
        var sortBy      = this.get('option');

        var sorted = rootView.get('people').orderBy('formalName');
        rootView.set('people', sorted)
    }
})
  • 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-10T06:42:12+00:00Added an answer on June 10, 2026 at 6:42 am

    This pull request is for updated documentation regarding SortableMixin.

    Ember.SortableMixin provides a standard interface for array proxies
    to specify a sort order and maintain this sorting when objects are added,
    removed, or updated without changing the implicit order of their underlying
    content array:
      songs = [ 
       {trackNumber: 4, title: 'Ob-La-Di, Ob-La-Da'},
       {trackNumber: 2, title: 'Back in the U.S.S.R.'},
       {trackNumber: 3, title: 'Glass Onion'},
      ];  
    
      songsController = Ember.ArrayController.create({
      content: songs,
      sortProperties: ['trackNumber']
    
     });
    
     songsController.get('firstObject'); // {trackNumber: 2, title: 'Back in the U.S.S.R.'}
     songsController.addObject({trackNumber: 1, title: 'Dear Prudence'});
     songsController.get('firstObject'); // {trackNumber: 1, title: 'Dear Prudence'}
    

    Sortable Mixin is now included in the ArrayController as of 0.9.8 release (I believe). All you need to do is define a sortProperties array on your controller and use the arrangedContent property in your views. Here is an explanation from Ivan.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

at the moment we're using SVN (yeah, I know that's shame :)) and we're
At moment I want to implement picture upload without using any plug-ins. My upload
At the moment I'm using bat file to launch my jar and set the
At the moment I'm using all sorts of if statements and substrings in order
At the moment I have about 2000 trades which are priced using excel. I
At the moment I am trying to validate a form using PHP. The problem
At the moment I am using this to call the TabHost activity to change
Ignoring price for the moment, would using Unity for a 2D game be better
At the moment I have a class that requires information from another class, but
At the moment I'm using a WHERE loop to display 2 columns of information

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.