Hello jonfrain,
As shown in the demo Custom Keyboard Navigation, you can change the effect of pressing keys in grid. In your case, you would have to do this for the Ctrl+V combination (Paste), as follows:
$("#jqxgrid").jqxGrid(
{
width: 850,
source: dataAdapter,
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 == 86 && event.ctrlKey == true) {
return true;
}
},
columns: [
{ text: 'Date', datafield: 'Date', cellsformat: 'D', width: 250 },
{ text: 'S&P 500', datafield: 'S&P 500', width: 300, cellsformat: 'f' },
{ text: 'NASDAQ', datafield: 'NASDAQ', cellsformat: 'f' }
]
});
Best Regards,
Dimitar
jQWidgets team
http://www.jqwidgets.com/