0

これはコントローラーの私のコードです:

[GridAction]
public ActionResult _Select()
{
    // Creating dummy data to bind the grid 
    var data = Enumerable.Range(1, 100)
        .Select(index => new Customer
        {
            ID = index,
            Name = "Customer #" + index,
            Tax = 1 + index,
            Amount = 500 + index
        });


        return View(new GridModel(data));
    }

これは私の見解です:

<%: Html.Telerik().Grid<GridLoadedWithAjaxInTabStrip.Models.Customer>()
    .Name("Grid")
    .Columns(columns =>
    {
        columns.Bound(c => c.ID).Width(200);
        columns.Bound(c => c.Name);
        columns.Bound(c => c.Tax);
       columns.Bound(p => p.Amount);

    })


    .DataBinding(dataBinding => dataBinding.Ajax().Select("_Select", "Home")) 
    .Sortable()
    .Pageable()
    .Groupable()
    .Filterable()
%>

カスタム フッター テンプレートをこの形式で配置する方法を知りたいです。

Total Tax:       XXXXX
Total Amount: XXXXX
Grand Total:   XXXXXXX

これを行う方法を教えてください。ありがとう!

4

1 に答える 1

0

このデモを確認する必要があります

http://demos.telerik.com/aspnet-mvc/grid/aggregatesajax

于 2012-10-12T19:34:24.513 に答える