简体   繁体   English

在Kendo Ui树形列表中编辑数据时如何获取字段值

[英]How to get field value when edit data in Kendo Ui treelist

I'm new in Kendo UI,and i have a question. 我是Kendo UI的新手,我有一个问题。 Now i'm use TreeList / Editing and how to auto load value to other field when i edit value to first field ? 现在我正在使用TreeList / Editing,当我将值编辑到第一个字段时如何自动将值加载到其他字段?

example: 例:
1.serial number: 123456789 1.序列号:123456789
2.name : test 2.名称:测试

when i edit serial number 123456789 to first field and auto load name to second field. 当我将序列号123456789编辑为第一个字段并将自动加载名称为第二个字段时。

To set the value of column B based on change made to a column A, you need to edit the model bound to the tree list. 要基于对列A所做的更改来设置列B的值,您需要编辑绑定到树列表的模型。 For this do the following:- 为此,请执行以下操作:

  1. Handle edit event of the tree list. 处理树形列表的编辑事件。 On this save the model to a local variable. 这样,将模型保存到局部变量。
  2. Add an editor template to column A. On the select event set the value of model. 编辑器模板添加到列A。在select事件上,设置model的值。

Below is a working code snippet:- 以下是有效的代码段:-

<div id="treelist"></div>
    <script>

    $(document).ready(function () {
      var crudServiceBaseUrl = "https://demos.telerik.com/kendo-ui/service";
      var model= null;
      var employeesData=[{"EmployeeId":101,"FirstName":"Daryl","LastName":"Sweeney"},
      {"EmployeeId":202,"FirstName":"Guy","LastName":"Wooten"},
      {"EmployeeId":303,"FirstName":"Priscilla","LastName":"Frank"},
      {"EmployeeId":404,"FirstName":"Ursula","LastName":"Holmes"},
      {"EmployeeId":505,"FirstName":"Anika","LastName":"Vega"}];

      var dataSource = new kendo.data.TreeListDataSource({
                transport: {
                    read: {
                        url: crudServiceBaseUrl + "/EmployeeDirectory/All",
                        dataType: "jsonp"
                    },
                    update: {
                        url: crudServiceBaseUrl + "/EmployeeDirectory/Update",
                        dataType: "jsonp"
                    },
                    destroy: {
                        url: crudServiceBaseUrl + "/EmployeeDirectory/Destroy",
                        dataType: "jsonp"
                    },
                    create: {
                        url: crudServiceBaseUrl + "/EmployeeDirectory/Create",
                        dataType: "jsonp"
                    },
                    parameterMap: function(options, operation) {
                        if (operation !== "read" && options.models) {
                            return {models: kendo.stringify(options.models)};
                        }
                    }
                },
                batch: true,
                schema: {
                    model: {
                        id: "EmployeeId",
                        parentId: "ReportsTo",
                        fields: {
                            EmployeeId: { type: "number", nullable: false },
                            ReportsTo: { nullable: true, type: "number" },
                            FirstName: { validation: { required: true } },
                            HireDate: { type: "date" },
                            Phone: { type: "string" },
                            HireDate: { type: "date" },
                            BirthDate: { type: "date" },
                            Extension: { type: "number", validation: { min: 0} },
                            Position: { type: "string" }
                        },
                        expanded: true
                    }
                }
        });

        $("#treelist").kendoTreeList({
            dataSource: dataSource,
            toolbar: [ "create", "save", "cancel" ],
            editable: "incell",
            height: 540,
            dataBound: function (e) {
                var items = e.sender.items();
                for (var i = 0; i < items.length; i++) {
                    var dataItem = e.sender.dataItem(items[i]);
                    var row = $(items[i]);
                    if (dataItem.isNew()) {
                        row.find("[data-command='createchild']").hide();
                    }
                    else {
                        row.find("[data-command='createchild']").show();
                    }
                }
            },
            edit: function(e) {
                model = e.model;
            }, 
            columns: [{ 
                field: "EmployeeId",
                expandable: true, 
                title: "Serial Number", 
                width: 180,
                editor: function(container, options) {
                      // create an input element
                      var input = $("<input/>");
                      // set its name to the field to which the column is bound ('lastName' in this case)
                      input.attr("name", options.field);
                      // append it to the container
                      input.appendTo(container);
                      // initialize a Kendo UI AutoComplete
                      input.kendoAutoComplete({
                        dataTextField: "EmployeeId",
                        dataSource: employeesData,
                        select: function(e) {
                          if(model !=null){
                                         model.FirstName = e.dataItem.FirstName;
                                model.LastName = e.dataItem.LastName;
                          }
                        }
                      });
                    }
                },
                { field: "FirstName", title: "First Name", width: 100 },
                { field: "LastName", title: "Last Name", width: 100 },
                { field: "Position", width: 100 },
                { field: "Phone", title: "Phone", width: 100 },
                { field: "Extension", title: "Ext", format: "{0:#}", width: 100 },
                { command: [{name: "createchild", text: "Add child"},"destroy" ], width: 240 }]
            });
    });
    </script>

You can trigger your function when the row is being saved or when the edit field is being changed. 您可以在保存行或更改编辑字段时触发功能。 Take a look at the list of events here and choose when exactly you want to make the changes. 在这里查看事件列表,然后选择您确切地希望进行更改的时间。 https://demos.telerik.com/kendo-ui/treelist/events https://demos.telerik.com/kendo-ui/treelist/events

here is a example how to all a function when saving the changes: https://docs.telerik.com/kendo-ui/api/javascript/ui/treelist/methods/saverow 这是保存更改时如何使用所有功能的示例: https : //docs.telerik.com/kendo-ui/api/javascript/ui/treelist/methods/saverow

I´m not sure witch edit method you are using (inline, inCell or Popup edit mode) each method can use events like saveRow, beforeEdit... 我不确定您正在使用的女巫编辑方法(内联,inCell或弹出窗口编辑模式),每种方法都可以使用诸如saveRow,beforeEdit等事件。

Check all the events documentation here: https://docs.telerik.com/kendo-ui/api/javascript/ui/treelist#events 在此处查看所有事件文档: https : //docs.telerik.com/kendo-ui/api/javascript/ui/treelist#events

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM