Skip to content

Instantly share code, notes, and snippets.

@noroot
Created November 15, 2012 12:29
Show Gist options
  • Save noroot/4078414 to your computer and use it in GitHub Desktop.
Save noroot/4078414 to your computer and use it in GitHub Desktop.
Extjs: How to set default data sort
var myStore = new Ext.data.JsonStore({
fields: ['Item1', 'Item2', 'Item3', 'Item4']
, data: []
, sortOnLoad: true
, sorters: { property: 'Item1', direction : 'DESC' }
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment