我想做的事情在我的劍道電網的值之和來形成其總計,總和劍道價值電網
對於我使用的是劍道電網一樣,
@(Html.Kendo().Grid<Invoice.Models.ViewModels.SupplementViewModel>()
.Name("Supplement")
.TableHtmlAttributes(new { style = "height:20px; " })
.Columns(columns =>
{
columns.Bound(p => p.SupplementID).Hidden(true);
columns.Bound(p => p.Description).Title("Description").Width(15);
columns.Bound(p => p.Nett).Title("Nett").Width(15).HtmlAttributes(new { @class="Currency"});
columns.Bound(p => p.Tax).Title("Tax").Width(15).HtmlAttributes(new { @class = "Currency" });
columns.Bound(p => p.GST_VAT).Title("GST_VAT").Width(15).HtmlAttributes(new { @class = "Currency" });
columns.Bound(p => p.ServiceTax).Title("ServiceTax").Width(15).HtmlAttributes(new { @class = "Currency" });
columns.Bound(p => p.ServiceFee).Title("ServiceFee").Width(15).HtmlAttributes(new { @class = "Currency" });
columns.Bound(p => p.Total).Title("Total").Width(15).HtmlAttributes(new { @class = "Currency" });
})
.Editable(editable => editable.Mode(GridEditMode.InCell))
.Navigatable()
.Sortable()
.Scrollable(scr => scr.Height(200))
.Scrollable()
.DataSource(dataSource => dataSource
.Ajax()
.Batch(true)
.ServerOperation(false)
.Events(events => events.Error("error_handler"))
.Model(model =>{
model.Id(p => p.ProductTypeCode);
})
.Create("Editing_Create", "Grid")
.Update("Editing_Update", "Grid")
.Destroy("Editing_Destroy", "Grid")
)
)
的情況是什麼像這樣::
我想在「總計」中顯示值的總和取決於那裏的變化, 怎麼辦?請幫助我。
使用劍道電網aggregates..http://demos.kendoui.com/web/grid/aggregates.html –
但合計是使用了我的方案特定列 和彙總我想總的所有列的求和。 – Rahul
我想你需要行的總和(不是列)。所以'Sum = Total = SUM(Nett,Tax,GST_VAT ...)'。如果是這種情況,您可以從控制器進行求和。 – Haritha