网格批量编辑在我的本地系统上无法正常工作

时间:2013-07-15 11:31:52

标签: kendo-ui

我正在使用剑道, 并用网格进行处理 我从kendo web page找到了这个演示 kendo网格批量编辑。

在这个演示中,我想要绑定我的数据源 它工作得很好,但只能破坏它们并且不起作用 我也在尝试这个:

        $(document).ready(function () {
                         var dataSource = new kendo.data.DataSource({
                                 transport: {
                                             destory:  {
                                             url: "<?php echo site_url('search_result_queue/destory_urls_fields').'/'.$id; ?>",
                                             dataType: "json",
                                     }
                            },
                            batch: true,
                            pageSize: 20,
                            schema: {
                                model: {
                                    id: "id",
                                    fields: {
                                         regex_id: "ProductName",
                                         value: "Race",
                                         event_url:"url"
                                    }
                                }
                            }
                        });

                    $("#grid").kendoGrid({
                        dataSource: dataSource,
                        navigatable: true,
                        pageable: true,
                        height: 430,
                        toolbar: ["create","save", "cancel"],
                        columns: [
                        { field: "key", title: "field", width: 110 },
                        { field: "value", title: "Units In Stock", width: 110 },
                        { field: "event_url", width: 110 },
                        { command: "destroy", title: " ", width: "90px" }],
                    editable: true,
                    destory:"inline"
                });
            });

任何人都可以请我知道我该怎么做?

2 个答案:

答案 0 :(得分:0)

您拼写dataSource传输函数“destory”而不是“destroy”。

答案 1 :(得分:0)

您需要检查destroy的拼写。在你的代码中它被“破坏”它应该是“破坏”。