本文介绍了在jqGrid中,您可以双击一行以显示编辑表单吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在jqGrid的此演示中,当您单击编辑选定的行"按钮:
In this demo of jqGrid, when you click on the "Edit Selected Row" button:
它显示一个编辑表单.
it brings up an edit form.
有什么方法可以双击网格中的一行来调出相同的编辑表单?
Is there any way to double click on a row in the grid to bring up this same edit form?
推荐答案
可以很简单地实现为
ondblClickRow: function(rowid) {
jQuery(this).jqGrid('editGridRow', rowid);
}
您还可以使用 editGridRow 的任何其他属性>在文档中进行了描述.例如
you can also use any additional properties of editGridRow described in the documentation. For example
ondblClickRow: function(rowid) {
jQuery(this).jqGrid('editGridRow', rowid,
{recreateForm:true,closeAfterEdit:true,
closeOnEscape:true,reloadAfterSubmit:false});
}
这篇关于在jqGrid中,您可以双击一行以显示编辑表单吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!