Paste data form excel to handsome table using contextMenu

Tags: #<Tag:0x00007f0b09b2eec0>

Like the title, How can I do that? Do you have any solution for paste data from the clipboard using the contextMenu
not the keyboard. My config is below.
contextMenu: [
‘copy’
‘cut’
{
key: ‘paste’
name: ‘Paste’
disabled: ->
false
callback: ->
plugin = this.getPlugin(‘copyPaste’)
this.listen((e) ->
console.log(‘testing’);
)
plugin.paste()
}
]

Hi @server.admin

due to security reasons, reading from the clipboard is not possible that is why the paste button doesn’t work from external data sources.

However, you can use key shortcuts. The key shortcuts are handled by the system so we are just switching on an ability to paste the data into the spreadsheet.

Thanks.

You’re welcome @server.admin