Jquery 剑道格网中的更新事件未触发

Jquery 剑道格网中的更新事件未触发,jquery,kendo-grid,Jquery,Kendo Grid,这是我的剧本 $(document).ready(function () { dataSource = new kendo.data.DataSource({ transport: { read: { url: "http://dnndev.me:80/DesktopModules/ServicePoint/api/DropData/Drop",

这是我的剧本

$(document).ready(function () {

    dataSource = new kendo.data.DataSource({
        transport: {
            read:
                {
                    url: "http://dnndev.me:80/DesktopModules/ServicePoint/api/DropData/Drop",
                    dataType: "json",
                },
            destroy:
                {
                    url: "http://dnndev.me/DesktopModules/ServicePoint/api/DeleteCategory/DeleteCategorybyid",
                    type: "DELETE"
                },
            update:
                {
                    url: "http://dnndev.me:80/DesktopModules/ServicePoint/api/updateCategory/update",
                    type: "POST",
           },

                    parameterMap: function (options, operation) {
                    if (operation !== "read" && options.models) {
                     return {
                       models: kendo.stringify(options.models)
                             };
                         }
                        }
                },


        },
        schema:
            {
                model:
                    {
                        id: "CategoryID",

                        fields: {
                            CategoryID: { editable: false, nullable: true, type: "number" },
                            CategoryName: { editable: true, nullable: true, type: "string" },

                        }

                    }
            }
    });

    $("#grid1").kendoGrid({
        dataSource:dataSource,
        editable: "inline",
        columns: [
          {
              field: "CategoryID",
              title: "number",

          },
        {
            field: "CategoryName",
            title: "Name"

        },

    {
        command: ["edit",
        {
            name: "destroy",
            text: "remove",

        }

        ],
       }
        ],

        height: "500px",
        pageable: {
            refresh: true,
            pageSizes: true,
            buttonCount: 5
        },
    }).data("kendoGrid");

});
读取和销毁操作工作正常,但在执行更新时,它甚至没有启动URLcross checked with Inspect元素,而且我在POSTMAN中检查了我的服务,它工作正常

type: "POST",
应该是

update:{
                url: "http://dnndev.me:80/DesktopModules/ServicePoint/api/updateCategory/update",
                type: "POST"
       }

感谢您的回复,但这不是一个正确的解决方案,在将Jquery更新到1.9版之后,它是如何工作的。