It is easy to change the default ordering of records in Ember.js.

App.PlayersController = Ember.ArrayController.extend({
  sortProperties: ['player_name'],
  sortAscending: true // set this to false to sort descending
});