I am using 2.0.0 version of the HandsOnTable .
Using IE browser.
Updated the handsOnTable.updateSettings to set callback as
handsOnTable.updateSettings({
contextMenu: {
‘paste’:{
name:‘Paste’,
disabled: function() {
return clipboardCache.length === 0;
},
callback: function() {
var plugin = this.getPlugin(‘copyPaste’);
this.listen();
plugin.paste(clipboardCache);
}
}
});
Able to cop-paste adjacent rows, but not non-adjacent rows.