Kendo UI网格不会触发传输创建URL

Mar*_*tha 1 javascript kendo-ui

我有一个kendoUI网格从Web服务做CRUD.出于某种原因,read命令工作正常并填充我的网格.

但是当我尝试创建新记录时,尽管它在网格中显示了新记录并且我可以编辑其字段,但按钮保存不会触发Web服务.

检查http日志,我看不到服务的命中.只在"阅读".

这是网格的代码:

$(function() {
            $("#grid").kendoGrid({
                dataSource: {
                    transport: {
                        read: "libyMsg.php?way=getUsrMsgList"
                    },
                    create: {
                        url: "libyMsg.php?way=createMsg",
                        type: "PUT"
                    },
                    update: {
                        url: "libyMsg.php?way=updateeMsg",
                        type: "PUT"
                    },destroy: {
                        url: "libyMsg.php?way=destroyMsg",
                        type: "PUT"
                    },
                    batch: true,
                    pageSize: 10,
                    schema: {
                        data: "data",
                        model: {
                            id: "msg_id",
                            fields: {
                                msg_id: { editable: false, nullable: true },
                                msg_title: { validation: { required: true } },
                                msg_content: {  validation: { required: true } },
                                msg_type: { type: "number", validation: { min: 0, required: true }},
                                msg_date: { type: "date", validation: { required: true } },
                                msg_status: { type: "number", validation: { min: 0, required: true } }
                            }
                        }
                    },
                },
                columns: [{ field: "msg_id", width: 40,title: "ID" },
                    { field: "msg_title",width: 300, title: "Title" },
                    { field: "msg_content", width: 300,title: "Content" },
                    { field: "msg_type", width: 40,title: "Type" },
                    { field: "msg_date", width: 300,title: "Date" }, 
                    { field: "msg_status", width: 40,title: "Status" }],
                scrollable: true,
                sortable: true,
                editable:true,
                pageable: {
                    refresh: true,
                    pageSizes: true
                },
                toolbar: ["create", "save", "cancel"],
            });
        });
Run Code Online (Sandbox Code Playgroud)

这真让我抓狂.任何人?

TY/M

Ona*_*Bai 5

transport错了.试试这个:

transport:{
    read      :"libyMsg.php?way=getUsrMsgList",
    create    :{
        url :"libyMsg.php?way=createMsg",
        type:"PUT"
    },
    update    :{
        url :"libyMsg.php?way=updateeMsg",
        type:"PUT"
    },
    destroy:{
        url :"libyMsg.php?way=destroyMsg",
        type:"PUT"
    }
},
Run Code Online (Sandbox Code Playgroud)

create,updatedestroy应成为其中的一部分transport.