3

我正在使用 mvc4。在我的一个页面上,它有 Kendo Grid。我想每页显示 5 行。但是,如果我使用的是 mvc 助手,我使用纯 javascript 来做这件事没有问题。我迷路了,在网上找不到任何样品。

这是我的 JavaScript 代码。

        <script language="javascript" type="text/javascript">

            $(document).ready(function () {
                $("#grid").kendoGrid({
                    dataSource: {
                        type: "json",
                        serverPaging: true,
                        pageSize: 5,
                        transport: { read: { url: "Products/GetAll", dataType: "json"} },
                        schema: { data: "Products", total: "TotalCount" }
                    },
                    height: 400,
                    pageable: true,
                    columns: [
                            { field: "ProductId", title: "ProductId" },
                            { field: "ProductType", title: "ProductType" },
                            { field: "Name", title: "Name" },
                            { field: "Created", title: "Created" }
                        ],
                    dataBound: function () {
                        this.expandRow(this.tbody.find("tr.k-master-row").first());
                    }
                });
            });

现在如果我使用 mvc 助手

            @(Html.Kendo().Grid(Model)
                .Name("Grid")  //please help me to finish the rest

更新

添加操作代码。

    [HttpPost]
    public ActionResult GetAll([DataSourceRequest]DataSourceRequest request, int id)
    {
        var products= ProductService.GetAll(id);

        return Json(products.ToDataSourceResult(request));
    }

服务层的GetAll方法:

    public IQueryable<Product> GetAll(int id)
    {
        var products= ProductRepository.Get(p => p.Id== id && p.IsActive == true, null, "ProductionYear")
                    .OrderBy(o => o.Name); //.ToList();

        return Product.Select(p => new ProductVM()
        {
            Name = p.Name,
            ProductionYear= p.ProductionYear.Year.ToString()
            Id = p.Id
        }).AsQueryable();
    }

现在,如果我运行该应用程序,我将收到以下错误:

“LINQ to Entities 无法识别 'System.String ToString()' 方法,并且该方法无法转换为存储表达式。”}

在 GetAll 方法中,我注释掉了“ToList()”。如果我使用 ToList,一切正常。但我将查询所有行,而不是只查询该页面所需的那些行。

4

5 回答 5

5

你可以在DataSource方法PageSize里面设置。所以你需要类似的东西:

@(Html.Kendo().Grid(Model)
     .Name("Grid") 
     .DataSource(dataSource => dataSource.Ajax()
                                    .PageSize(5)
                                    .Read(c => c.Action("GetAll", "Products")
                                    .Model(s => s.Id(m => m.Id)))
     .Columns(columns =>
     {
        columns.Bound(m => m.ProductId).Title("ProductId");
        //other colums
     })
    .Events(g => g.DataBound("somefunction"))
    .Pageable(true))

您可以在 KendoUI Grid 的Asp.NET MVC 包装器文档中找到更多信息。

于 2012-10-03T19:03:19.180 回答
5

如果您没有使用 Kendo 的 ASP.NET MVC 包装器并且直接使用 Kendo JavaScript 对象并且您正在尝试进行服务器端分页,那么您需要按如下方式创建数据源:

var dataSource = {
    "type":"aspnetmvc-ajax",
    "serverSorting": true,
    "serverPaging": true,
    "page": 1,
    "pageSize": 8,
    "schema": {
      "data":"items",
      "total":"count",
      "errors":"errors"
    }
};

您的 Read 控制器方法将类似于:

    public ActionResult List_Read([DataSourceRequest]DataSourceRequest request) {
        try {
            var model = null /* prepare your model object here contain one page of grid data */;

            // using Json.NET here to serialize the model to string matching the
            // schema expected by the data source
            var content = JsonConvert.SerializeObject(new { count = model.Count, items = model.Items }, Formatting.None);

            return Content(content, "application/json");
        }
        catch (Exception exception) {
            // log exception if you need to

            var content = JsonConvert.SerializeObject(new { errors = exception.Message.ToString() }, Formatting.None);

            return Content(content, "application/json");
        }
    }

typeserverSorting并且serverPaging对于确保分页和排序发生在服务器端很重要。type 必须aspnetmvc-ajax,否则查询数据将无法被 Read 方法中的 [DataSourceRequest] 属性指定的模型绑定器识别。除非您想编写自己的自定义模型绑定器来解析 kendo 数据源发送的查询数据,否则不能省略该属性,这不符合 ASP.NET MVC 中 DefaultModelBinder 使用的模型绑定约定。

于 2013-02-14T14:04:09.933 回答
0

如果您将 Kendo UI 用于 ASP.NET MVC,则另一个答案将起作用。如果不需要,则需要自己实现分页。Kendo DataSource 将在发出请求时发送 pageSize 和当前页面。您可以使用它来进行分页。它还发送“take”和“skip”,让事情变得更容易(提示 Linq)。

于 2012-10-03T19:41:10.130 回答
0

错误“LINQ to Entities 无法识别方法 'System.String ToString()' 方法,并且此方法无法转换为存储表达式。”} 是不言自明的,要解决这个问题,您应该执行类似的操作

return Product.**AsEnumerable**.Select(p => new ProductVM()
        {
            Name = p.Name,
            ProductionYear= p.ProductionYear.Year.ToString()
            Id = p.Id });

使用 AsEnumerable 会带来数据库中的所有记录,因此最好在任何过滤后使用

products.where(x => x.active = true).AsEnumerable

而不是 products.AsEnumerable.where(x => x.active = true)

于 2013-03-15T02:45:30.230 回答
0

下载 kendo 示例,然后解压缩并按照 <your directory>\Kendo UIASP.NET MVC Q12013\wrappers\aspnetmvc\Examples\Areas\razor\Views\web\grid\ 的视图索引和 <your directory>\Kendo UIASP.NET MVC Q12013\wrappers\aspnetmvc\Examples\Controllers 的 IndexController

在您看来,您可能还希望 .ServerOperation(true) 如下所示,以避免使用 JSON JavaScriptSerializer 在序列化或反序列化期间出错。字符串的长度超过了 maxJsonLength 属性上设置的值。如果您有大数据要获取

@(Html.Kendo().Grid(<yourmodel>)
    .Name("Grid")
    .Columns(columns =>
       ...
    })

        .Filterable()
        .Pageable()

        .DataSource(dataSource => dataSource
            .Ajax()
            .PageSize(8)
            .ServerOperation(true) )

            .Model(model =>
            {
                model.Id(p => p.Id);
                ...
            })
        )
    )

也在控制器中的 ActionResult Products_Read 考虑

  DataSourceResult result = GetProducts().ToDataSourceResult(request,  o => new { Id = o.Id, ... } );
  return Json(result , JsonRequestBehavior.AllowGet);
于 2013-09-18T14:21:39.140 回答