有没有办法知道jqgrid中的行是否处于编辑模式?
感谢提前。
答案 0 :(得分:13)
如果您在内联编辑模式中谈论行而不是行(<tr>
元素)是否具有属性editable="1"
,则可以进行顶点。对于处于编辑模式的所有行,将为ba jqGrid设置该属性。所以代码可能是
if ($("tr#"+rowid).attr("editable") === "1") {
// the row having id=rowid is in editing mode
}
或
$($("#list").jqGrid("getInd",rowid,true)).attr("editable") === "1") {
// the row having id=rowid is in editing mode
}