The following is implemented but doesn't work:
"copy_paste": {
"name": Drupal.t('Copy & Paste'),
"callback": function (name, selected, clickpoint) {
for (var row = selected.start.row; row <= selected.end.row; row++) {
for (var col = selected.start.col; col <= selected.end.col; col++) {
var value = this.getCellMeta(row, col).placeholder;
if (value) {
this.setDataAtCell(row, col, value);
}
}
}
}
}
Figure out a solution for the common Cut, Copy, Paste operations.
Closed: outdated
1.0
Code
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.