0

我正在使用带有 html 的剑道 ui 网格并调用经典 asp 我的剑道数据源如下所示。我可以使用 asp 列出数据,但是,我不知道如何在 asp 中进行更新。模型是如何传递到asp页面的?

var remoteDataSource = new kendo.data.DataSource(
                {
                    transport:
                    {
                        read: {
                            type: "GET",
                            dataType: "json",
                            url: "defaultAction.asp?Action=List"
                        },
                        update: {
                                url: "defaultAction.asp?Action=Update",
                                dataType: "json",
                                type: "POST"
                            },
                        parameterMap: function(options, operation) {
                            if (operation !== "read" && options.models) {
                                return {models: kendo.stringify(options.models)};
                            }
                        }
                    },
                    batch: true,
                    pageSize: 4,
                     schema: {
                            model: {
                                id: "ID",
                                fields: {
                                    ID: { editable: false, nullable: true },
                                    Email: { type: "string" },

                                }
                            }
                        }

                })
4

1 回答 1

0

如何将 Kendo DataSource 绑定到 ASP.NET Webforms 页面并使用其代码隐藏方法来执行 CRUD,在公共 GitHub 存储库上的以下示例中进行了介绍。

于 2013-10-28T18:32:03.523 回答