0

这是示例:http ://demos.telerik.com/aspnet-mvc/razor/grid/ajaxbinding

@(Html.Telerik().Grid<AXBCore.AccountTemplate>()
    .Name("Grid1")
    .Columns(columns =>
    {
        columns.Bound(p => p.Name).Width(110);
        columns.Bound(p => p.Amount).Width(110);
        columns.Bound(p => p.Timestamp).Width(110);
    })
    .DataBinding(dataBinding => dataBinding.Ajax().Select("_AjaxBinding", "Settings"))
    .Pageable()
    .Sortable()
    .Scrollable()
    .Groupable()
    .Filterable()
) 

为什么它不起作用?

4

1 回答 1

0

答案很简单。我有两个同名的网格。所以,第二个没用。

于 2012-05-17T10:30:57.890 回答