edit

Switches the specified value cell in edit mode. Requires the edit mode to be enabled. Fires the beforeEdit and edit events.

Parameters

cell jQuery

The jQuery object which represents the table cell.

Example - switching the first value cell to edit mode

<div id="propertyGrid"></div>
<script>
  $("#propertyGrid").kendoPropertyGrid({
    model: {
        foo: "bar",
        baz: 5
    },
    width: 500
  });

var component = $("#propertyGrid").data("kendoPropertyGrid");
component.edit($("#propertyGrid td:eq(1)"));
</script>
In this article