kendo ui grid 合計

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8" />
    <base href="http://demos.telerik.com/kendo-ui/grid/editing">
    <style>
        html {
            font-size: 14px;
            font-family: Arial, Helvetica, sans-serif;
        }
    </style>
    <title></title>
    <link rel="stylesheet" href="https://kendo.cdn.telerik.com/2017.3.913/styles/kendo.common-material.min.css" />
    <link rel="stylesheet" href="https://kendo.cdn.telerik.com/2017.3.913/styles/kendo.material.min.css" />
    <link rel="stylesheet" href="https://kendo.cdn.telerik.com/2017.3.913/styles/kendo.material.mobile.min.css" />


    <script src="https://kendo.cdn.telerik.com/2017.3.913/js/jquery.min.js"></script>
    <script src="https://kendo.cdn.telerik.com/2017.3.913/js/kendo.all.min.js"></script>
</head>
<body>
    <div id="grid"></div>
    <script>
        $(document).ready(function () {
            var crudServiceBaseUrl = "https://demos.telerik.com/kendo-ui/service",
                dataSource = new kendo.data.DataSource({
                    transport: {
                        read: {
                            url: crudServiceBaseUrl + "/Products",
                            dataType: "jsonp"
                        },
                        update: {
                            url: crudServiceBaseUrl + "/Products/Update",
                            dataType: "jsonp"
                        },
                        destroy: {
                            url: crudServiceBaseUrl + "/Products/Destroy",
                            dataType: "jsonp"
                        },
                        create: {
                            url: crudServiceBaseUrl + "/Products/Create",
                            dataType: "jsonp"
                        },
                        parameterMap: function (options, operation) {
                            if (operation !== "read" && options.models) {
                                return { models: kendo.stringify(options.models) };
                            }
                        }
                    },
                    batch: true,
                    pageSize: 5,
                    aggregate: [
                        { field: "UnitPrice", aggregate: "sum" },
                        { field: "UnitsInStock", aggregate: "sum" },
                    ],
                    schema: {
                        model: {
                            id: "ProductID",
                            fields: {
                                ProductID: { editable: false, nullable: true },
                                ProductName: { validation: { required: true } },
                                UnitPrice: { type: "number", validation: { required: true, min: 1 } },
                                Discontinued: { type: "boolean" },
                                UnitsInStock: { type: "number", validation: { min: 0, required: true } }
                            }
                        }
                    }
                });

            $("#grid").kendoGrid({
                dataSource: dataSource,
                navigatable: true,
                pageable: false,
                // height: 550,
                toolbar: ["create", "save", "cancel"],
                columns: [
                    { field: 'ProductName', title: 'ProductName', footerTemplate: 'Total', attributes: { style: 'text-align:center;' }, footerAttributes: { style: 'color: red;text-align:center;' } },
                    { field: 'UnitPrice', title: 'UnitPrice', footerTemplate: '#: data.UnitPrice ? data.UnitPrice.sum: 0 #', attributes: { style: 'text-align:center;' }, footerAttributes: { style: 'color: red;text-align:center;' }, headerAttributes: { style: 'text-align:center;' } },
                    { field: 'UnitsInStock', title: 'UnitsInStock', footerTemplate: '#: data.UnitsInStock ? data.UnitsInStock.sum: 0 #', attributes: { style: 'text-align:center;' }, footerAttributes: { style: 'color: red;text-align:center;' }, headerAttributes: { style: 'text-align:center;' } },
                    { title: 'Total', template: '#= data.UnitPrice + data.UnitsInStock #', footerTemplate: '#: (data.UnitPrice ? data.UnitPrice.sum: 0) + (data.UnitsInStock ? data.UnitsInStock.sum: 0) #', attributes: { style: 'color: red;text-align:center;' }, footerAttributes: { style: 'color: red;text-align:center;' }, headerAttributes: { style: 'color: red;text-align:center;' } },
                    { command: 'destroy', title: '&nbsp;', width: '150' },
                ],
                editable: true
            });
        });
    </script>
    </div>


    <!-- <div id="example">
                <div id="grid"
                data-role="grid"
                data-bind="source:dataSource"
                data-toolbar="['create', 'save', 'cancel']"
                data-editable="true"
                @*data-pageable="true"*@
                @*data-toolbar="['create']"*@
                @*data-editable="inline"*@
                data-columns="[
                                    { field : 'ProductName', title: 'ProductName', footerTemplate: 'Total', attributes: { style: 'text-align:center;' }, footerAttributes: { style: 'color: red;text-align:center;' } },
                                    { field : 'UnitPrice', title: 'UnitPrice', footerTemplate: '#: data.UnitPrice ? data.UnitPrice.sum: 0 #', attributes: { style: 'text-align:center;' }, footerAttributes: { style: 'color: red;text-align:center;' }, headerAttributes: { style: 'text-align:center;' } },
                                    { field : 'UnitsInStock', title: 'UnitsInStock', footerTemplate: '#: data.UnitsInStock ? data.UnitsInStock.sum: 0 #', attributes: { style: 'text-align:center;' }, footerAttributes: { style: 'color: red;text-align:center;' }, headerAttributes: { style: 'text-align:center;' } },
                                    { title: 'Total', template: '#= data.UnitPrice + data.UnitsInStock #', footerTemplate: '#: (data.UnitPrice ? data.UnitPrice.sum: 0) + (data.UnitsInStock ? data.UnitsInStock.sum: 0) #', attributes: { style: 'color: red;text-align:center;' }, footerAttributes: { style: 'color: red;text-align:center;' }, headerAttributes: { style: 'color: red;text-align:center;' } },
                                    { command: 'destroy', title: '&nbsp;', width: '150' },
                                    @*{ command: ['edit', 'destroy'], title: '&nbsp;' },*@
                               ]">
            </div> -->
</body>


</html>


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值