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

HTML ... <<table id="editgrid" class="scroll" cellpadding="0" cellspacing="0"></table> <div id="pagered" class="scroll" style="text-align:center;"></div> <input type="BUTTON" id="bedata" value="Edit Selected" /> Java Scrpt code jQuery("#delgrid").jqGrid({ url:'editing.php?q=1', datatype: "xml", colNames:['Inv No','Date', 'Client', 'Amount','Tax','Total','Closed','Ship via','Notes'], colModel:[ {name:'id',index:'id', width:55,editable:false,editoptions:{readonly:true,size:10}}, {name:'invdate',index:'invdate', width:80,editable:true,editoptions:{size:10}}, {name:'name',index:'name', width:90,editable:true,editoptions:{size:25}}, {name:'amount',index:'amount', width:60, align:"right",editable:true,editoptions:{size:10}}, {name:'tax',index:'tax', width:60, align:"right",editable:true,editoptions:{size:10}}, {name:'total',index:'total', width:60,align:"right",editable:true,editoptions:{size:10}}, {name:'closed',index:'closed',width:55,align:'center',editable:true,edittype:"checkbox",editoptions:{value:"Yes:No"}}, {name:'ship_via',index:'ship_via',width:70, editable: true,edittype:"select",editoptions:{value:"FE:FedEx;TN:TNT"}}, {name:'note',index:'note', width:100, sortable:false,editable: true,edittype:"textarea", editoptions:{rows:"2",cols:"20"}} ], rowNum:10, rowList:[10,20,30], imgpath: gridimgpath, pager: jQuery('#pagerde'), sortname: 'id', viewrecords: true, sortorder: "desc", caption:"Deleteing Example", editurl:"someurl.php" }); $("#dedata").click(function(){ var gr = jQuery("#delgrid").getGridParam('selrow'); //getSelectedRow(); if( gr != null ) jQuery("#delgrid").delGridRow(gr,{reloadAfterSubmit:false}); else alert("Please Select Row to delete!"); });