$(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.
$(function () { var returnsValue; // Type: bool returnsValue = $(".selector").wijgrid("beginEdit"); });
function beginEdit() : bool;
$("#element").wijgrid({} editingMode: "cell", currentCellChanged: function (e, args) { if ($(e.target).wijgrid("option", "isLoaded")) { window.setTimeout(function () { $(e.target).wijgrid("beginEdit"); }, 100); } } });