Hi,
You can override the keyboard navigation and handle the ‘DEL’ key by using the following approach:
$("#jqxgrid").jqxGrid( { width: 670, source: dataAdapter, theme: theme, columnsresize: true, editable: true, ready: function() { $("#jqxgrid").jqxGrid('focus'); }, editmode: 'selectedcell', selectionmode: 'singlecell', handlekeyboardnavigation: function(event) { var key = event.charCode ? event.charCode : event.keyCode ? event.keyCode : 0; if (key == 46) { return true; } }, columns: [ { text: 'Date', datafield: 'Date', cellsformat: 'D', width: 250}, { text: 'S&P 500', datafield: 'S&P 500', width: 200, cellsformat: 'f' }, { text: 'NASDAQ', datafield: 'NASDAQ', width: 200, cellsformat: 'f' } ] });
Best Regards,
Peter Stoev
jQWidgets Team
http://www.jqwidgets.com/