Hi guzs,
I am using jqxGrid with clipboard functionalities. Everything works ok, but I am not able to get clipboardData.
I managed to catch ctr+v event,
handlekeyboardnavigation: function(event)
{
var key = event.charCode ? event.charCode : event.keyCode ? event.keyCode : 0;
if (key == 86 && event.ctrlKey) {
console.log(event);
console.log(window.clipboardData);
return true;
}
},
but how to get actual data that is in clipboard. I would like to refresh my chart after pasting a lot of data to grid.
So far I would refresh chart on cellvaluechanged
event, but it has performance issue if I am pasting bigger table (10×50).
I would like to catch clipboard data before pasting and refresh chart after pasting data to grid.
Hope there is a way. Thanks for the help.
Cheers