当前位置: 首页 > 工具软件 > Backgrid.js > 使用案例 >

ext js grid分组技巧

范麒
2023-12-01

 

 

      new Ext.grid.GridPanel({
       

    ds = new Ext.data.GroupingStore({
    proxy:proxy,
    reader:jsreader,
    remoteSort: true,
    sortInfo:{field: 'MileID', direction: "ASC"},                  就是这个
            groupField:'MileID'                                              就是这个

    });   


        view: new Ext.grid.GroupingView({                   就是这个
            forceFit:true                                                     就是这个
        }),                                 就是这个

 类似资料: