Ext Grid 的合计行解决

在实际的应用中,我们的用户经常会要求需要在展现数据的网格上,增加合计行这样的功能,Ext.Grid.GridPanel本身并不支持合计行,在EXT的官方论坛上,有一些plugin可以实现合计行的功能。但其解决的个人觉得不太好用,于是,只有自己手动来做了。
首先,我们要搞清楚,grid控件,是与ColumnModel,Store,GridView等对象一起协作地,所以要分析需要从什么地方入手解决问题。经过分析,我们不难看出,要解决我们的合计行,需要从以下几方面入手:
1.改变表格VIEW的header模板,增加我们的合计行元素
2.增加对表格数据的求和计算
3.考虑表格中数据变化时,刷新数据视图的问题
4.修改renderHeader方法,以支持合计行数据的渲染
以下为新增的CSS样式:
.x-grid3-row-sum {
    /*border:1px solid #dddddd;
    background: #efefef url(../images/default/grid/grid3-hrow-sum.gif) repeat-x left top;
    */
    border:1px solid #dddddd;
    background: url(../images/default/grid/grid3-hrow-sum.gif) repeat-x left top;
}

https://p-blog.csdn.net/images/p_blog_csdn_net/ynzhangyao/EntryImages/20081017/grid3-hrow-sum.gif

示例图:
https://p-blog.csdn.net/images/p_blog_csdn_net/ynzhangyao/EntryImages/20081017/ext_grid_sum.JPG

 

  1. /*
  2.  * Ext JS Library 2.1
  3.  * Copyright(c) 2006-2008, Ext JS, LLC.
  4.  * [email protected]
  5.  * 
  6.  * http://extjs.com/license
  7.  */
  8. /**
  9.  * @class Ext.grid.EditorGridPanelEx
  10.  * @extends Ext.grid.EditorGridPanel
  11.  * @author 张尧伟
  12.  * @version 1.0
  13.  * 

    此类是为增加合计行而设计的

  14.  * 

    Usage:
  15.  * 
  16.      function createPreplanDetailGrid()
  17.     {
  18.          var preplanDetailStore = new Ext.data.DWRStore({id:'preplanDetailStore',fn:UIPreContractReport.getPreContractDetail,
  19.             fields: [
  20.                {name: 'bar'},
  21.                {name: 'itemName'},
  22.                {name: 'storeAmount', type: 'float'},
  23.                {name: 'endAmount',type:'float'},
  24.                {name: 'currentRate',type:'float'},
  25.                {name: 'weekPercent',type:'float'},
  26.                {name: 'confirmAmount',type:'float'},
  27.                {name: 'accPreAmount',type:'float'},
  28.                {name: 'surplusTargetAmount',type:'int'},
  29.                {name:'surplusHyearAmount',type:'float'}
  30.             ]
  31.         });
  32.         
  33.         var sm = new Ext.grid.CheckboxSelectionModel();
  34.         var preplanDetailGrid = new Ext.grid.EditorGridPanelEx({
  35.             id:'preplanDetailGrid',
  36.             title:'卷烟规格明细',
  37.             store: preplanDetailStore,
  38.             cm: new Ext.grid.ColumnModelEx({sumheader:true,columns:[
  39.                 sm,
  40.                 {header: "卷烟条码", width:90,  sortable: true, dataIndex: 'bar',sumcaption:'合计'},
  41.                 {header: "卷烟规格",  width:110,sortable: true,  dataIndex: 'itemName'},
  42.                 {header: "预计划量",  width:100,sortable: true, dataIndex: 'endAmount',editor:new Ext.form.NumberField(),align:'right',renderer:Util.rmbMoney,issum:true},
  43.                 {header: "商业库存",  width:100,sortable: true, dataIndex: 'storeAmount',align:'right',renderer:Util.rmbMoney},
  44.                 {header: "到货存销比",  width:100,sortable: true, dataIndex: 'currentRate',align:'right',renderer:Util.rmbMoney},
  45.                 {header: "周进度",  width:100,sortable: true, dataIndex: 'weekPercent',align:'right'},
  46.                 {header: "商业请求量",  width:100,sortable: true, dataIndex: 'confirmAmount',align:'right',renderer:Util.rmbMoney,issum:true},
  47.                 {header: "累计预计划量",  width:100,sortable: true, dataIndex: 'accPreAmount',align:'right',renderer:Util.rmbMoney},
  48.                 {header: "剩余指标量",  width:100,sortable: true, dataIndex: 'surplusTargetAmount',align:'right',renderer:Util.rmbMoney,issum:true},
  49.                 {header: "剩余协议量",  width:100,sortable: true, dataIndex: 'surplusHyearAmount',align:'right',renderer:Util.rmbMoney,issum:true}
  50.             ]}),
  51.             sm:sm,
  52.             stripeRows: true,
  53.             height:Util.getH(0.4),
  54.             bbar:[
  55.                 {pressed:true,text:'删除',handler:deletePreplanDetail},{xtype:'tbseparator'},
  56.                 {pressed:true,text:'保存',handler:saveModified}
  57.                 ]
  58.         });
  59.     
  60.         return preplanDetailGrid;
  61.     }
  62.  
  63.  * Notes: 
  64.  * - Ext.grid.ColumnModel需要增加属性:sumheader:true以指示需要使用合计行
  65.  * - Ext.grid.ColumnModel的columns属性中,需要增加sumcaption:'合计'属性,以指示需要显示的合计标题名称
  66.  * - Ext.grid.ColumnModel的columns属性中,需要增加issum:true属性,以指示该列需要计算合计
  67.  * - Ext.grid.ColumnModel的columns属性中,可选增加sfn:function(sumvalue,colvalue,record){return 计算结果;},
  68.  * 以指示该列需要使用用户自定义函数进行计算sumvalue:此列当前的合计值,colvalue当前计算的列值,record当前记录对象
  69.  * 
  70.  * @constructor
  71.  * @param {Object} config The config object
  72.  */
  73. Ext.grid.GridPanelEx = Ext.extend(Ext.grid.GridPanel, {
  74.   getView : function() {
  75.         if (!this.view) {
  76.             this.view = new Ext.grid.GridViewEx(this.viewConfig);
  77.         }
  78.         return this.view;
  79.     },
  80.   initComponent : function() {
  81.     if (!this.cm) {
  82.         
  83.         this.cm = new Ext.grid.ColumnModelEx(this.columns);
  84.         this.colModel = this.cm;
  85.         delete this.columns;
  86.     }
  87.     if(!this.groupedHeaders)
  88.     {
  89.         this.groupedHeaders = this.groupedHeaders;
  90.     }
  91.     //在编辑完成后,需要更新合计列
  92.     //this.on('afteredit',this.onAfteredit,this);
  93.     Ext.grid.GridPanelEx.superclass.initComponent.call(this);
  94.   },
  95.   
  96.   getGroupedHeaders : function(){
  97.         return this.groupedHeaders;
  98.   },
  99.   /**
  100.    * 处理修改后,更新合计
  101.    * @param {} event
  102.    * grid - This grid
  103.    * record - The record being edited
  104.    * field - The field name being edited
  105.    * value - The value being set
  106.    * originalValue - The original value for the field, before the edit.
  107.    * row - The grid row index
  108.    * column - The grid column index
  109.    */
  110.   onAfteredit:function(event){
  111.     var grid = event.grid;
  112.     var cm = grid.getColumnModel();
  113.     if(false == cm.sumheader)
  114.     {
  115.         return;
  116.     }
  117.     var value = event.value;
  118.     var origValue = event.originalValue;
  119.     
  120.     cm.config[event.column].sumvalue -= origValue;
  121.     cm.config[event.column].sumvalue += value;
  122.     grid.getView().updateHeaders();
  123.   },
  124.   /**
  125.    * 重新计算合计列
  126.    */
  127.   recalculation:function(){
  128.     var cm = this.getColumnModel();
  129.     if(true != cm.sumheader)
  130.     {
  131.         return;
  132.     }   
  133.     var view = this.getView();
  134.     view.recalculation(this.getStore());
  135.   }
  136. });
  137. Ext.grid.EditorGridPanelEx = Ext.extend(Ext.grid.EditorGridPanel, {
  138.   getView : function() {
  139.         if (!this.view) {
  140.             this.view = new Ext.grid.GridViewEx(this.viewConfig);
  141.         }
  142.         return this.view;
  143.     },
  144.   initComponent : function() {
  145.     if (!this.cm) {
  146.         
  147.         this.cm = new Ext.grid.ColumnModelEx(this.columns);
  148.         this.colModel = this.cm;
  149.         delete this.columns;
  150.     }
  151.     if(!this.groupedHeaders)
  152.     {
  153.         this.groupedHeaders = this.groupedHeaders;
  154.     }
  155.     //在编辑完成后,需要更新合计列
  156.     this.on('afteredit',this.onAfteredit,this);
  157.     Ext.grid.EditorGridPanelEx.superclass.initComponent.call(this);
  158.   },
  159.   
  160.   getGroupedHeaders : function(){
  161.         return this.groupedHeaders;
  162.   },
  163.   /**
  164.    * 处理修改后,更新合计
  165.    * @param {} event
  166.    * grid - This grid
  167.    * record - The record being edited
  168.    * field - The field name being edited
  169.    * value - The value being set
  170.    * originalValue - The original value for the field, before the edit.
  171.    * row - The grid row index
  172.    * column - The grid column index
  173.    */
  174.   onAfteredit:function(event){
  175.     var grid = event.grid;
  176.     var cm = grid.getColumnModel();
  177.     if(false == cm.sumheader)
  178.     {
  179.         return;
  180.     }
  181.     var value = event.value;
  182.     var origValue = event.originalValue;
  183.     
  184.     cm.config[event.column].sumvalue -= origValue;
  185.     cm.config[event.column].sumvalue += value;
  186.     grid.getView().updateHeaders();
  187.   },
  188.   /**
  189.    * 重新计算合计列
  190.    */
  191.   recalculation:function(){
  192.     var cm = this.getColumnModel();
  193.     if(true != cm.sumheader)
  194.     {
  195.         return;
  196.     }   
  197.     var view = this.getView();
  198.     view.recalculation(this.getStore());
  199.   }
  200. });
  201. Ext.grid.GridViewEx = function(config) {
  202.     Ext.apply(this, config);
  203.     if (!this.templates) this.templates = {};
  204.     
  205.     
  206.     //增加合计行模板
  207.     if(!this.templates.header){
  208.             this.templates.header = new Ext.Template(
  209.                     '',
  210.                     '{cells}{sumcells}',
  211.                     ""
  212.                     );
  213.     }
  214.     
  215.     if(!this.templates.sumcells){
  216.             this.templates.sumcells = new Ext.Template(
  217.                     '''',
  218.                     '{value}''''',
  219.                     "
"
  •                     );
  •     }
  •     
  •     
  •     Ext.grid.GridViewEx.superclass.constructor.call(this);
  • };
  • Ext.extend(Ext.grid.GridViewEx, Ext.grid.GridView, {
  •     
  •     insertRows : function(ds, firstRow, lastRow, isUpdate){
  •         if(!isUpdate && firstRow === 0 && lastRow == ds.getCount()-1){
  •             this.refresh();
  •         }else{
  •             if(!isUpdate){
  •                 this.fireEvent("beforerowsinserted"this, firstRow, lastRow);
  •             }
  •             var html = this.renderRows(firstRow, lastRow);
  •             var before = this.getRow(firstRow);
  •             if(before){
  •                 Ext.DomHelper.insertHtml('beforeBegin', before, html);
  •             }else{
  •                 Ext.DomHelper.insertHtml('beforeEnd'this.mainBody.dom, html);
  •             }
  •             if(!isUpdate){
  •                 this.fireEvent("rowsinserted"this, firstRow, lastRow);
  •                 this.processRows(firstRow);
  •             }
  •         }
  •     },
  •     onUpdate : function(ds, record){
  •         this.refreshRow(record);
  •     },
  •         // private
  •     refreshRow : function(record){
  •         var ds = this.ds, index;
  •         if(typeof record == 'number'){
  •             index = record;
  •             record = ds.getAt(index);
  •         }else{
  •             index = ds.indexOf(record);
  •         }
  •         var cls = [];
  •         this.insertRows(ds, index, index, true);
  •         this.getRow(index).rowIndex = index;
  •         this.onRemove(ds, record, index+1, true);
  •         this.fireEvent("rowupdated"this, index, record);
  •         /*
  •         if(true == record.dirty && true == this.cm.sumheader){
  •             var cm = this.cm;
  •             var colCount =  cm.getColumnCount();
  •             for(var i=0; i
  •             {
  •                 var c = cm.config[i];
  •                 if( true == c.issum && typeof record.modified[c.dataIndex] !== 'undefined'){
  •                     var value = record.get(c.dataIndex);
  •                     var origValue = record.modified[c.dataIndex];
  •                     if(origValue){
  •                         cm.config[i].sumvalue -= origValue;
  •                         cm.config[i].sumvalue += value;
  •                     }
  •                 }
  •             }
  •             this.updateHeaders();
  •         }*/
  •     },
  •     onRemove : function(ds, record, index, isUpdate){
  •         if(isUpdate !== true){
  •             this.fireEvent("beforerowremoved"this, index, record);
  •         }
  •         this.removeRow(index);
  •         if(isUpdate !== true){
  •             this.processRows(index);
  •             this.applyEmptyText();
  •             this.fireEvent("rowremoved"this, index, record);
  •             
  •             //处理删除行时的合计行问题
  •             this.processSumForRemoved(ds,record,index);
  •         }
  •     },
  •     
  •     //Template has changed and we need a few other pointers to keep track
  •     doRender : function(cs, rs, ds, startRow, colCount, stripe){
  •         var ts = this.templates, ct = ts.cell, rt = ts.row, last = colCount-1;
  •         var tstyle = 'width:'+this.getTotalWidth()+';';
  •         // buffers
  •         var buf = [], cb, c, p = {}, rp = {tstyle: tstyle}, r;
  •         //如果不是在编辑状态下,则需要将合计列的数据清0        
  •         if(false == rs[0].dirty && true ==(rs.length == ds.getCount())){
  •             this.clearSumZero();
  •         }
  •         for(var j = 0, len = rs.length; j < len; j++){
  •             r = rs[j]; cb = [];
  •             var rowIndex = (j+startRow);
  •             for(var i = 0; i < colCount; i++){
  •                 c = cs[i];
  •                 p.id = c.id;
  •                 p.css = i == 0 ? 'x-grid3-cell-first ' : (i == last ? 'x-grid3-cell-last ' : '');
  •                 p.attr = p.cellAttr = "";
  •                 p.value = c.renderer(r.data[c.name], p, r, rowIndex, i, ds);
  •                 p.style = c.style;
  •                 if(p.value == undefined || p.value === "") p.value = " ";
  •                 if(r.dirty && typeof r.modified[c.name] !== 'undefined'){
  •                     p.css += ' x-grid3-dirty-cell';
  •                 }
  •                 cb[cb.length] = ct.apply(p);
  •                 
  •                 //处理求和问题
  •                 if(true == this.cm.sumheader)
  •                 {
  •                     if(true == this.cm.config[i].issum && false == r.dirty)
  •                     {//如果是求和列且不为脏数据
  •                         if(!this.cm.config[i].sumvalue){
  •                                 this.cm.config[i].sumvalue = 0.0;
  •                         }
  •                         if(this.cm.config[i].sfn)
  •                         {//如果存在求和函数,则调用
  •                             this.cm.config[i].sumvalue = this.cm.config[i].sfn(this.cm.config[i].sumvalue,r.get(c.name),r);
  •                         }
  •                         else
  •                         {//否则,直接累计
  •                             if(r.data[c.name]){
  •                                 this.cm.config[i].sumvalue += r.data[c.name];
  •                             }
  •                         }
  •                     }
  •                 }
  •                 
  •             }
  •             var alt = [];
  •             if(stripe && ((rowIndex+1) % 2 == 0)){
  •                 alt[0] = "x-grid3-row-alt";
  •             }
  •             if(r.dirty){
  •                 alt[1] = " x-grid3-dirty-row";
  •             }
  •             rp.cols = colCount;
  •             if(this.getRowClass){
  •                 alt[2] = this.getRowClass(r, rowIndex, rp, ds);
  •             }
  •             rp.alt = alt.join(" ");
  •             rp.cells = cb.join("");
  •             buf[buf.length] =  rt.apply(rp);
  •         }
  •         
  •         //如果有合计行,则需要重新渲染表头
  •         if(true == this.cm.sumheader)
  •         {
  •             this.updateHeaders();
  •         }
  •         return buf.join("");
  •     },
  •      /**
  •      * 将求和的列清0
  •      */
  •     clearSumZero:function(){
  •         this.hasSumColumn = false;
  •         var cm = this.cm;
  •         for(var i=0; i
  •         {
  •             if(cm.config[i].issum)
  •             {
  •                 this.hasSumColumn = true;
  •                 this.cm.config[i].sumvalue = 0.0;
  •             }
  •         }
  •     },
  •     renderHeaders : function(){
  •         var cm = this.cm, ts = this.templates;
  •         var ct = ts.hcell;
  •         var cb = [], sb = [],lb = [], lsb = [], p = {};
  •         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
  •             p.id = cm.getColumnId(i);
  •             p.value = cm.getColumnHeader(i) || "";
  •             p.style = this.getColumnStyle(i, true);
  •             p.tooltip = this.getColumnTooltip(i);
  •             if(cm.config[i].align == 'right'){
  •                 p.istyle = 'padding-right:16px';
  •             } else {
  •                 delete p.istyle;
  •             }
  •             cb[cb.length] = ct.apply(p);
  •         }
  •         
  •         //处理合计行表头
  •         if(true == cm.sumheader)
  •         {
  •             sb = this.buildSumHeaders(cm,ts);
  •         }
  •         
  •         return ts.header.apply({cells: cb.join(""), sumcells: sb.join(""),tstyle:'width:'+this.getTotalWidth()+';'});
  •         
  •         //return [ts.header.apply({cells: cb.join(""), sumcells: sb.join(""), tstyle:'width:'+(tw-lw)+';'}),
  •         //ts.header.apply({cells: lb.join(""), sumcells: lsb.join(""), tstyle:'width:'+(lw)+';'})];
  •         
  •         //return ts.header.apply({cells: cb.join(""), tstyle:'width:'+this.getTotalWidth()+';'});
  •     },
  •     
  •     
  •     /**
  •      * 生成合计表头
  •      * @param {} cm
  •      * @param {} ts
  •      * @param {} tw
  •      * @param {} lw
  •      * @return {}array
  •      */
  •     buildSumHeaders:function(cm,ts){
  •         var ct = ts.hcell;
  •         var sb = [], sp = {};
  •         for (var i = 0, len = cm.getColumnCount(); i < len; i++) {
  •             sp.id = 'sum' + cm.getColumnId(i);
  •             if(cm.config[i].sumcaption){
  •                 sp.value = cm.config[i].sumcaption;
  •             }else{
  •                 sp.value = " ";
  •             }
  •             
  •             //cm.config[i].sumcaption = " ";
  •             if (true == cm.config[i].issum && typeof cm.config[i].sumvalue == 'number'){
  •                 if(cm.config[i].renderer)
  •                 {
  •                     sp.value = cm.config[i].renderer(cm.config[i].sumvalue);
  •                 }else{
  •                     sp.value = cm.config[i].sumvalue;
  •                 }
  •             }
  •             
  •             
  •             sp.style = this.getColumnStyle(i, false);
  •             sp.tooltip = this.getColumnTooltip(i);
  •             
  •             if (cm.config[i].align == 'right') {
  •                 sp.istyle = 'padding-right:16px';
  •             }
  •              sb[sb.length] = ct.apply(sp);
  •         }
  •         return sb;
  •     },
  •     /**
  •      * 处理删除行时,更新合计行的数据
  •      * @param {} ds
  •      * @param {} record
  •      * @param {} index
  •      */
  •     processSumForRemoved: function(ds,record,index){
  •         var cm = this.cm;
  •         if(true != cm.sumheader){
  •             return;
  •         }
  •         
  •         var cfg = cm.config;
  •         for(var i=0; i
  •             if(true == cfg[i].issum && cfg[i].sumvalue){
  •                 var val = record.get(cfg[i].dataIndex);
  •                 if(val){
  •                     cfg[i].sumvalue -= val;
  •                 }
  •             }
  •         }
  •         this.updateHeaders();
  •     },
  •     /**
  •      * 重新计算合计列
  •      */
  •     recalculation:function(ds){
  •         
  •         this.clearSumZero();
  •         if(true != this.hasSumColumn){
  •             return;
  •         }
  •         var colCount = this.cm.getColumnCount();
  •         var records = ds.getRange();
  •         for(var k=0; k
  •             record = records[k];
  •             for(var i=0; i<this.cm.config.length; ++i){
  •                 if(true == this.cm.config[i].issum){
  •                     var val = record.get(this.cm.config[i].dataIndex);
  •                     if(typeof val == 'number'){
  •                         this.cm.config[i].sumvalue += val;
  •                     }
  •                 }
  •             }
  •         };
  •         
  •         this.updateHeaders();
  •         
  •     }
  •     
  • });
  • Ext.grid.ColumnModelEx = function(config) {
  •     
  •     Ext.grid.ColumnModelEx.superclass.constructor.call(this, config);
  •     //alert('config.groupedHeaders ' + config.groupedHeaders);
  •     //this.groupedHeaders = config.groupedHeaders;
  •     
  • };
  • Ext.extend(Ext.grid.ColumnModelEx, Ext.grid.ColumnModel, {
  •     /**
  •      * Returns true if the specified column menu is disabled.
  •      * @param {Number} col The column index
  •      * @return {Boolean}
  •      */
  •     isMenuDisabled : function(col){
  •         if(-1 == col){
  •             return true;
  •         }else{
  •             return !!this.config[col].menuDisabled;
  •         }
  •     }
  • });
  • Ext.reg('gridex', Ext.grid.GridPanelEx);
  • Ext.reg('editorgridex', Ext.grid.EditorGridPanelEx);

  • 你可能感兴趣的:(js,ext,function,header,float,licensing,constructor)