jqGrid Cell Editing - Double Click to Edit? -


By default, if a jqGrid cell is editable, that cell is changed to edit it mode with a single click Is there a way that I can edit on double click instead? To remove it, line-level operations have to be simplified because all the columns in my grid are editable.

Yes, to capture double-click ondblClickRow You can use

Here's a simple example to get you started:

  ondblClickRow: function () {var row_id = $ ("# grid" "). GetGridParam ('Sero'); JQuery ('# Grid') EditRow (row_id, true); }  

Comments