This example show how we can delete data.
See below for all available options.
Note: The data is not deleted from server
Description
This method uses colModel and editurl parameters from jqGrid
Calling:
jQuery("#grid_id").delGridRow( row_id_s,options );
row_id_s is the row to delete. When in multiselect automatially delete the selected rows options top : 0 the initial top position of edit dialog left: 0 the initinal left position of edit dialog
If the left and top positions are not set the dialog apper on
upper left corner of the grid width: 0, the width of edit dialog - default 300 height: 0, the height of edit dialog default 200 modal: false, determine if the dialog should be in modal mode default is false drag: true,determine if the dialog is dragable default true msg: "Delete selected row(s),message to display when deleting the row caption: "Delete Record",the caption of the dialog bSubmit: "Submit", the text of the button when you click to data default Submit bCancel: "Cancel",the text of the button when you click to close dialog default Cancel url: , url where to post data. If set replace the editurl reloadAfterSubmit : true reloads grid data after posting default is true
// Events beforeShowForm: null fires before showing the form data.
Paramter passed to the event is the id of the constructed form. afterShowForm: null fires after the form is shown.
Paramter passed to the event is the id of the constructed form. beforeSubmit: null fires before the data is submitted to the server
Paramter is of type id=value1,value2,... When called the event can return array
where the first parameter can be true or false and the second is the message of the error if any
Example: [false,"The value is not valid"] afterSubmit: null fires after the data is posted to the server. Typical this
event is used to recieve status form server if the data is posted with success.
Parameters to this event are the returned data from the request and array of the
posted values of type id=value1,value2