kendoui Grid 使用 刷新数据、

1、kendo ui grid

使用kendoui的中文版

//创建一个新到完整到grid
$(document).ready(function () {
         kendo.culture("zh_CN");//使用kendoui的中文版 
         $("#grid").kendoGrid({
                dataSource: {
                    type: "odata",
                    transport: {
                        read: "//demos.telerik.com/kendo-ui/service/Northwind.svc/Customers"
                    },
                    pageSize: 20
                },
                height: 550,
                groupable: true,
                sortable: true,
                pageable: {
                    refresh: true,
                    pageSizes: true,
                    buttonCount: 5
                },
                columns: [{
                    template: "
" + "
#: ContactName #
", field: "ContactName", title: "Contact Name", width: 240 }, { field: "ContactTitle", title: "Contact Title" }, { field: "CompanyName", title: "Company Name" }, { field: "Country", width: 150 }] }); });

你可能感兴趣的:(kendoui Grid 使用 刷新数据、)