Disable delGridRow confirmation window in jqGrid

How to disable delGridRow confirmation window? because I don’t want to report changes to the user.

+5
source share
1 answer

To solve the problem, you can simply simulate a click on the "Delete" button with id = "# dData" inside afterShowForm :

afterShowForm: function ($form) {
    $("#dData", $form.parent()).click();
}

Watch the demo .

+6
source

All Articles