2013-06-05 56 views
0

我有一個問題。我不明白如何將一個數組多維數組多維數值並且然後求和該字段。我只是用underscore.js嘗試,但它只允許按值分組。 我是使用ExtJS的4.我有一個網格,我wnat組記錄網格javascript extjs數組組多個值

var records = Etx.getCmp('grdCorpoFatturaVendita').store.getRange(); 
    var castellettoDataArray = []; 
    for (var x = 0; x < records.length; x++) { 
     console.log(records[x]); 
     castellettoDataArray.push(records[x].data); 
    } 

var groupedData = _.groupByMulti(castellettoDataArray, 'CodiceContoContabile'); 
console.log(groupedData); 

回答

1

我不明白你非常好,但我認爲你正試圖組在網格上的一個現場:

煎茶API:grid grouping

您需要在您的網格視圖定義添加一個功能:

features: [{ 
    id: 'group', 
    ftype: 'groupingsummary', 
    groupHeaderTpl: '{name} ({rows.length})', //print the number of items in the group 
    hideGroupedHeader: false 
}], 

一個示例 on Sencha Api:Example

+0

嗨,感謝您的迴應,但是它可能是您的小組嗎? – Brux88

+0

我不想看到這樣的文字:「hehe herere the group」。你能重寫嗎? – mfruizs2

+0

抱歉嗨用我的單元格寫入;),隱藏標頭組 – Brux88