在 Kendo Grid 的外部网格行中显示详细网格行的总和
Posted
技术标签:
【中文标题】在 Kendo Grid 的外部网格行中显示详细网格行的总和【英文标题】:Show the sum of detail grid rows in outer grid row in Kendo Grid 【发布时间】:2014-09-23 18:05:20 【问题描述】:我在 Kendo 详细网格中有很多行,我试图在外部网格的数据单元格中显示详细行的总和。有什么办法可以吗?
【问题讨论】:
【参考方案1】:您好,我在此示例中为您创建了一个示例,我将第一个网格的列总数显示到第二个网格的单元格中。
代码:-
//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/
谢谢
【讨论】:
以上是关于在 Kendo Grid 的外部网格行中显示详细网格行的总和的主要内容,如果未能解决你的问题,请参考以下文章
Grid中的Kendo DropDownList在选择后显示值
Kendo 网格 - 如何获取 RowSelected 上的行详细信息?