如何按值对Ext.grid.NumberColumn中的项目进行排序?

时间:2011-03-11 03:33:20

标签: sorting extjs

您能否告诉我如何按其值对Ext.grid.NumberColumn(包含在网格中)中的所有项目进行排序?谢谢!

1 个答案:

答案 0 :(得分:3)

排序是在网格存储中完成的:

......
store:  new Ext.data.Store ( {
  .....
  sortInfo: {
    field:      'your_int_column',
    direction:  'ASC'
  },       
  reader: new Ext.data.ArrayReader ( { },
    [   
       'FirstName',
       'LastName',
      { name: 'your_int_column', type: 'int' }
    ]    
  ),
  .....
} ),
....