Can anyone help me deleting a row from Struts 2 Jquery grid using an external button. I have included a button in the jsp as below
<sj:a id="delete" name="delete" onClickTopics="rowselect"
button="true">Delete</sj:a>
and in the script tag I have written
$.subscribe('delete', function(event,data) {
$("#gridedittable").jqGrid(‘delRowData’,row_id);
}
I am not able to get the rowid
for the selected row to be deleted.
Can any one help me with this as I am new to struts 2 jquery.
Hi you can get selected row by using the
jqGrid
apiThis assumed you set the
multiselect
param tofalse
.For
multiselect
, you have to use the optionselarrrow
instead.http://www.trirand.com/jqgridwiki/doku.php?id=wiki:methods
http://www.trirand.com/jqgridwiki/doku.php?id=wiki:options
And the grid setting should be like