服务器端排序在kendo ui网格中不起作用

时间:2017-03-01 13:51:49

标签: kendo-grid nopcommerce-3.80

我尝试在点击“名称”时对所有数据应用排序,但排序操作应用于首页数据。

这是我的代码。

 $("#products-grid").kendoGrid({
                                    dataSource: {
                                        type: "json",
                                        transport: {
                                            read: {
                                                url: "@Html.Raw(Url.Action("ProductList", "Product"))",
                                                type: "POST",
                                                dataType: "json",
                                                data: additionalData

                                            }
                                        },
                                        schema: {
                                            data: "Data",
                                            total: "Total",
                                            errors: "Errors"
                                        },
                                       pageSize: @(defaultGridPageSize),
                                       serverPaging: true,
                                       // serverFiltering: true,
                                       sort: { field: "Name", dir: "desc" },

                                    },
                                    pageable: true,
                                    sortable: true,
                                    editable: {
                                        confirmation: "@T("Admin.Common.DeleteConfirmation")",
                                        mode: "inline",
                                    },
 scrollable: false,

                                   columns: [
                                        {
                                            field: "Name",
                                            title: "@T("Admin.Catalog.Products.Fields.Name")",
                                            sortable: {
                                                initialDirection: "desc"
                                            },
                                            width: 300,
                                        }   ]
                                });

我也试过serverSorting: true,但当时默认排序不起作用。

0 个答案:

没有答案