<div id="grid"></div>
<script>
function grid_cellClose(e) {
/* The result can be observed in the DevTools(F12) console of the browser. */
console.log(e.type);
}
$("#grid").kendoGrid({
columns: [
{ field: "name" },
{ field: "age" }
],
dataSource: {
data: [
{ id: 1, name: "Jane Doe", age: 30 },
{ id: 2, name: "John Doe", age: 33 }
],
schema: {
model: { id: "id" }
}
},
editable: "incell",
});
var grid = $("#grid").data("kendoGrid");
grid.bind("cellClose", grid_cellClose);
grid.editCell($("#grid td:eq(1)"));
</script>
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4