如何在kendo ui grid中过滤

时间:2016-01-28 05:47:39

标签: kendo-ui kendo-grid

我想知道如何在kendo ui gird中过滤数据。 我使用JSON从db获取数据。

当我在Bill控制器中调试函数JsonGetBill时, 我甚至无法调试任何东西。 也许,KendoGrid没有尝试从JsonGetBill获取数据。 我该如何解决这个问题?

Plz,救救我。

$('#divBillInfoGrid').kendoGrid({            
        dataSource: {                
            type: "JSON",                
            transport: {
                read: {
                    url: '@Url.Action("JsonGetBill", "Bill")',
                    type: "POST",
                    contentType: "APPLICATION/JSON"
                }
            },
            schema:{
                model:{
                    fields: {
                        BIL_Idx: { type: "number" }
                    }
                }
            },
            pageSize: 5,
            serverPaging: true,
            serverFiltering: true,
        },
        height: 550,
        filterable: {
            mode: "row"
        },
        pageable: true,
        columns: [

            { field: "BIL_Idx", title: "No", filterable: { cell: { showOperators: false } }, sortable: true, template: '<div class="idx" style="font-size:12px text-align:center;">#=BIL_Idx#<div>' }

        ],

    });    
}

1 个答案:

答案 0 :(得分:0)

可能就像你的函数说“JsonGetBill”不是type =“Get”? 如何发送数据不需要Post?

http://docs.telerik.com/kendo-ui/api/javascript/data/datasource

希望这个帮助