you can add this:
$('.ui-inline-del').each(function(index) { $(this).html(''); }); or this: $('.ui-inline-del').each(function(index) { $(this).hide(); });
at the end of loadComplete: function () { also change
.jqGrid('navGrid', '#Pager1', { add: true, edit: false }, {}, {}, myDelOptions, { multipleSearch: true, overlay: false });
in
.jqGrid('navGrid', '#Pager1', { add: true, edit: false, del:false }, {}, {}, myDelOptions, { multipleSearch: true, overlay: false });
if you want to remove the delete row option in the footer
kleinohad
source share