New to Kendo UI for jQuery? Download free 30-day trial

Edit Rows in Detail Template

Environment

Product Progress® Kendo UI® Grid for jQuery
Product Version Created with the 2017.3.1026 version

Description

How can I edit the master rows in the relevant detail rows of the Kendo UI Grid? How can I prevent the Grid from collapsing when I edit an item in a detail row?

Possible Workarounds

To work around the default behavior, fake the editing process in the detailInit event handler.

  1. Select all inputs in the detailCell element.
  2. Attach a change event handler to every input.
  3. In the change event handler:
    1. Update the text of the relevant master row cell.
    2. Prepend a k-dirty span to the same cell.
    3. Change the value of the field in the dataItem.
    4. Set the dirty property of the dataItem to true.
<script id="detail-template" type="text/x-kendo-template">
    <div>
        productName: <input name="productName" class="k-textbox" value="#: productName #" />
    </div>
    <div>
        category: <input name="category" class="k-textbox" value="#: category #" />
    </div>
</script>

<div id="grid"></div>
<script>
    $("#grid").kendoGrid({
        columns: [{
                field: "productName",
                editable: function(e) {
                    return false
                }
            },
            {
                field: "category",
                editable: function(e) {
                    return false
                }
            }
        ],
        editable: true,
        toolbar: ["save"],
        dataSource: {
            data: [{
                    ProductID: 0,
                    productName: "Tea",
                    category: "Beverages"
                },
                {
                    ProductID: 1,
                    productName: "Coffee",
                    category: "Beverages"
                },
                {
                    ProductID: 2,
                    productName: "Ham",
                    category: "Food"
                },
                {
                    ProductID: 3,
                    productName: "Bread",
                    category: "Food"
                }
            ],
            schema: {
                model: {
                    id: "ProductID",
                }
            }
        },
        detailTemplate: kendo.template($("#detail-template").html()),
        detailInit: function(e) {
            e.detailCell.find("input").on("change", function(e) {
                var value = e.target.value;
                var field = e.target.name;
                var dRow = $(e.target.closest("tr"))
                var mRow = dRow.prev(".k-master-row")
                var grid = $("#grid").data("kendoGrid");
                var dataItem = grid.dataItem(mRow);
                var tds = $(mRow).find("[role='gridcell']");
                var td;

                if (field === "productName") {
                    td = tds.first();
                } else {
                    td = tds.last();
                }

                td.text(value);
                td.prepend("<span class='k-dirty'></span>");

                dataItem[field] = value;
                dataItem.dirty = true;
            })
        }
    });
</script>
In this article