[GH #4878] Copy-paste non-adjacent rows not working . Using a 2.0.0 version & IE browser

Tags: #<Tag:0x00007efc60c82428>

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.

1 Like

This option is not implemented yet.
To track progress on this task please follow the topic https://github.com/handsontable/handsontable/issues/4878

1 Like