Open the Popup Editor on Double Click of a Grid Row
Environment
Product | Progress® Kendo UI® Grid for jQuery |
Product Version | Created with version 2020.3.1021 |
Description
How can I open the popup editor when I double-click a Grid row?
Solution
- Within the
databound
event handler, attach a handler to the double-click event of thetr
element. - When the double-click event of the row is fired, edit the clicked row by using the
editRow
method.
<div id="grid"></div>
<script>
$(document).ready(function () {
var crudServiceBaseUrl = "https://demos.telerik.com/kendo-ui/service",
dataSource = new kendo.data.DataSource({
transport: {
read: {
url: crudServiceBaseUrl + "/Products",
dataType: "jsonp"
},
update: {
url: crudServiceBaseUrl + "/Products/Update",
dataType: "jsonp"
},
destroy: {
url: crudServiceBaseUrl + "/Products/Destroy",
dataType: "jsonp"
},
create: {
url: crudServiceBaseUrl + "/Products/Create",
dataType: "jsonp"
},
parameterMap: function(options, operation) {
if (operation !== "read" && options.models) {
return {models: kendo.stringify(options.models)};
}
}
},
batch: true,
pageSize: 20,
schema: {
model: {
id: "ProductID",
fields: {
ProductID: { editable: false, nullable: true },
ProductName: { validation: { required: true } },
UnitPrice: { type: "number", validation: { required: true, min: 1} },
Discontinued: { type: "boolean" },
UnitsInStock: { type: "number", validation: { min: 0, required: true } }
}
}
}
});
$("#grid").kendoGrid({
dataSource: dataSource,
pageable: true,
height: 550,
toolbar: ["create"],
columns: [
{ field:"ProductName", title: "Product Name" },
{ field: "UnitPrice", title:"Unit Price", format: "{0:c}", width: "120px" },
{ field: "UnitsInStock", title:"Units In Stock", width: "120px" },
{ field: "Discontinued", width: "120px" }],
editable: "popup",
dataBound: onDataBound
});
});
function onDataBound() {
var grid = this;
grid.element.off('dblclick');
grid.element.on('dblclick','tbody tr[data-uid]',function (e) {
grid.editRow($(e.target).closest('tr'));
})
}
</script>
</div>
<style>
tbody tr:hover{
cursor: pointer
}
</style>