4

我有一个包含两个摘要位置的网格。我在表格末尾有一个摘要。这很好用。但我想要的是计算每行的总价格。我有 4 列名为“Aantal、Stukprijs、korting 和 Totaal”。我需要的是在“Totaal”列中这个总和:(Aantal X Stukprijs)- %korting(意味着折扣)。

这是该网格的代码:

  xtype: 'gridpanel',
                                id: 'materiaalGrid',
                                autoScroll: true,
                                forceFit: true,
                                store: 'MyArrayStore8',
                                columns: [
                                    {
                                        xtype: 'rownumberer'
                                    },
                                    {
                                        xtype: 'gridcolumn',
                                        dataIndex: 'naam',
                                        text: 'Naam',
                                        editor: {
                                            xtype: 'combobox'
                                        }
                                    },
                                    {
                                        xtype: 'gridcolumn',
                                        dataIndex: 'type',
                                        text: 'Type'
                                    },
                                    {
                                        xtype: 'numbercolumn',
                                        summaryType: 'sum',
                                        dataIndex: 'gewicht',
                                        text: 'Gewicht'
                                    },
                                    {
                                        xtype: 'numbercolumn',
                                        summaryType: 'sum',
                                        dataIndex: 'aantal',
                                        text: 'Aantal',
                                        editor: {
                                            xtype: 'numberfield'
                                        }
                                    },
                                    {
                                        xtype: 'numbercolumn',
                                        dataIndex: 'stuks',
                                        text: 'Stukprijs'
                                    },
                                    {
                                        xtype: 'numbercolumn',
                                        dataIndex: 'korting',
                                        text: 'Korting',
                                        editor: {
                                            xtype: 'numberfield',
                                            maxValue: 100
                                        }
                                    },
                                    {
                                        xtype: 'numbercolumn',
                                        summaryType: 'sum',
                                        dataIndex: 'stuks',
                                        text: 'Totaal'
                                    },
                                    {
                                        xtype: 'booleancolumn',
                                        dataIndex: 'verkoop',
                                        text: 'Verkoop'
                                    },
                                    {
                                        xtype: 'actioncolumn',
                                        maxWidth: 50,
                                        minWidth: 50,
                                        width: 50,
                                        defaultWidth: 50,
                                        emptyCellText: 'Delete',
                                        menuDisabled: true,
                                        items: [
                                            {
                                                handler: function(view, rowIndex, colIndex, item, e, record, row) {
                                                    var selection = me.getView().getSelectionModel().getSelection()[0];
                                                    if (selection) {
                                                        store.remove(selection);
                                                    }
                                                },
                                                altText: 'Delete'
                                            }
                                        ]
                                    }
                                ],
                                viewConfig: {
                                    enableTextSelection: false
                                },
                                features: [
                                    {
                                        ftype: 'summary'
                                    }
                                ],
                                plugins: [
                                    Ext.create('Ext.grid.plugin.RowEditing', {

                                    })
                                ],

我只能在最后一行得到 aantal 和 gewicht 的总和。

4

1 回答 1

4

要解决此特定情况,您可以尝试这样做:

  • 对于“Aantal X Stukprijs”AKA数量 X 单价的结果 (感谢上帝存在 Google 翻译器!),您可以创建一个计算字段,在字段声明中实现转换函数,如下所示:
{
        名称:“总计”,
        类型:'数字',
        转换:函数(值,记录){
            如果(!值){
                // 只有在没有设置值的情况下才计算值
                // 计算的总列将用一个真实的填充这个字段
                // 我们不想弄乱的值
                value = record.get('price') * record.get('units');
            }            
            返回值;
        }
    }
  • 当使用内联编辑器更改记录值时,这仍然会留下不一致的情况,您需要为此添加一个额外的处理程序,如下所示:
    grid.on('edit', function(editor, e) {
           // commit the changes right after editing finished    
           e.record.set('total'); // force total re-calculation
           e.record.commit(); 
   });

您可以在这里看到一个完整的示例,希望对您有所帮助。

于 2013-10-17T13:47:19.113 回答