具有模型绑定的Kendo网格服务器端分页

时间:2014-06-11 05:23:15

标签: c# asp.net-mvc kendo-ui kendo-grid

嗨我在局部视图中有一个剑道网格。

我已将模型绑定为网格数据源。并提到我的网格没有读取方法。我没有使用读取方法,而是使用了模型。

这是我的观点..

@model Project.MVC.Areas.Razor.Models.CustomerListModel

<div id="dvResultGrid">
    @(Html.Kendo().Grid<Portal.Application.BoundedContext.ScreenPop.Dtos.Customer>(Model.CustomerList)
    .Name("grdWindowResults")

    .Columns(columns =>
                   {
                       columns.Bound(x => x.Name1).Visible(true);
                       columns.Bound(x => x.Name2).Visible(true);
                       columns.Bound(x => x.ContactName);
                       columns.Bound(x => x.BillingAddress1);
                   })
    .Pageable()
    .Sortable(x => x.Enabled(false))
    .Scrollable(x => x.Height("auto"))
    .Selectable(selectable => selectable.Mode(GridSelectionMode.Single))
    .Reorderable(reorder => reorder.Columns(true))
    .DataSource(dataSource => dataSource
        .Ajax()
        .ServerOperation(false)                                                              
        .PageSize(5)
        .Model(model =>
                {
                    model.Id(p => p.CustomerId);

                })
    )
)
</div>

我要做的是,我需要为我的网格进行服务器端分页。 我怎么能用read方法做到这一点。有什么选择吗?

1 个答案:

答案 0 :(得分:0)

我已回复您的forum thread