Wijmo UI for the Web
beginEdit Method
wijmo.grid Namespace > wijgrid type : beginEdit Method
Puts the current cell into edit mode, as long as the editingMode options is set to "cell".
Syntax
$(function () {
    var returnsValue; // Type:  bool
    returnsValue = $(".selector").wijgrid("beginEdit");
});
function beginEdit() : bool;

Return Value

True if the cell is successfully put into edit mode, otherwise false.
Example
$("#element").wijgrid({}
    editingMode: "cell",
    currentCellChanged: function (e, args) {
        if ($(e.target).wijgrid("option", "isLoaded")) {
            window.setTimeout(function () {
                $(e.target).wijgrid("beginEdit");
            }, 100);
        }
    }
});
See Also

Reference

wijgrid type
wijgrid jQuery Widget