您没有发布任何代码来显示您如何实现内联编辑。有许多不同的实现使用内联编辑。最典型的是
- 在行选择上开始编辑,按 保存Enter,在丢弃先前未保存行中的更改后选择另一行
- 在行选择上开始编辑,按 保存Enter,选择另一行后静默保存上一个未保存行中的更改
- 双击行开始编辑,按 保存Enter,选择另一行后丢弃先前未保存行中的更改
- 双击行开始编辑,按 保存Enter,选择另一行后静默保存上一个未保存行中的更改
- 使用附加列
formatter: "actions"
- inlineNav方法的使用
- ...
例如,如果您使用上述列表的第一个版本并且您不想进行任何行选择,则可以将代码从onSelectRow移动到beforeSelectRow
.
该演示演示了一个可能的实现:
beforeSelectRow: function (rowid) {
var $this = $(this),
editingRowId = $this.jqGrid("getGridParam", "editingRowId"),
setEditingRowId = function (newId) {
$this.jqGrid("setGridParam", {editingRowId: newId});
};
if (rowid !== editingRowId) {
if (editingRowId !== undefined) {
$this.jqGrid("restoreRow", editingRowId);
}
$this.jqGrid("editRow", rowid, {
keys: true,
oneditfunc: function (id) {
setEditingRowId(id);
},
aftersavefunc: function () {
setEditingRowId();
},
afterrestorefunc: function () {
setEditingRowId();
}
});
}
return false;
}
更新:如果您想使用单元格编辑模式,相应的实现会更加困难。不过,您可能应该主要遵循答案中的想法。该演示演示了您需要的部分代码。它不使用任何键盘绑定。
beforeSelectRow: function (rowid, e) {
var $this = $(this),
$td = $(e.target).closest("td"),
$tr = $td.closest("tr.jqgrow"),
iRow, iCol;
if ($tr.length > 0) {
iRow = $tr[0].rowIndex;
iCol = $.jgrid.getCellIndex($td[0]);
$this.jqGrid('setGridParam', {cellEdit: true});
$this.jqGrid('editCell', iRow, iCol, true);
$this.jqGrid('setGridParam', {cellEdit: false});
}
return false;
}