我有一个对象:
store: Ext.create('Ext.data.ArrayStore',{
sortInfo: { field: "uniq_users", direction: "DESC" },
fields: [
{name: 'Country', type: 'string'},
{name: 'uniq_users', type:'int'}],
data: [{Country: 'Ed', users: 'Spencer'}]
})
store.loadData(...)
为什么默认排序不适用于现场?
答案 0 :(得分:2)
sortInfo
属性可用于ExtJS 3.x,而不适用于最新版本。随着版本4的发布,排序通过mixin Ext.util.Sortable
实现。您应该使用属性sorters
来定义排序参数..
以下是您应该做的事情:
store: Ext.create('Ext.data.ArrayStore',{
sorters: [
{property : 'uniq_users',direction: 'DESC'}
],
fields: [
{name: 'Country', type: 'string'},
{name: 'uniq_users', type:'int'}
],
data: [{Country: 'Ed', users: 'Spencer'}]
});
store.loadData(...);