在Kendo Grid中显示外部网格行中的详细网格行的总和

时间:2014-07-31 17:05:10

标签: kendo-ui kendo-grid rowdetailstemplate

我在剑道细节网格中有很多行,我试图在外部网格的数据单元格中显示详细行的总和。我有什么方法可以这样做吗?

1 个答案:

答案 0 :(得分:0)

您好我在本例中为您创建了一个示例,我将第一个网格列的总数显示在第二个网格的单元格中。

代码: -

//calucalte the total of value column of first grid and create new data
var total=0;
var data=$("#grid").data("kendoGrid").dataSource.data();
$.each(data,function(i,row)
       { 
               total+=row.value; 
       });

//create dataSource for new grid
var source=[{"total":total}];
//create new grid here
$("#grid2").kendoGrid({
    dataSource: source,

    schema: {
        model: {
            id: "id",
            fields: {
                total: { type: "number", editable: false },

            }
        }            
    }, 
});

工作示例: - http://jsfiddle.net/mga6f/287/

感谢