Hi
{
copyPaste : true,
contextMenuCopyPaste : {
swfPath : '/path/to/ZeroClipboard.swf'
},
contextMenu: true
}
it works fine. but.
{
copyPaste : true,
contextMenuCopyPaste : {
swfPath : '/path/to/ZeroClipboard.swf'
},
contextMenu: {
items: [
{
key: "copy",
name: "Copy",
callback: function(key, options) {
// Should I write here in any way?
// (Also cut and paste)
}
}
]
}
}
I do not know even read the documentation and source.