This page covers a non-latest version of Handsontable.
# Clipboard
# Overview
The clipboard offers Copy & Cut and Paste functionality, enabling you to copy & cut cell data from Handsontable and paste it to the system clipboard. This can be achieved either via shortcut keys or by triggering a copy & cut or paste programmatically.
# Copy & Cut
Copy & Cut actions allow exporting data from Handsontable to the system clipboard. The CopyPaste plugin copies and cuts data as a text/plain and a text/html MIME-type.
# End-user usage
Available keyboard shortcuts:
- Ctrl/Cmd + C - copies the content of the last cell in the selected range
- Ctrl/Cmd + X - cuts the content of the last cell in the selected range
Available options in the browser's toolbar:
Edit > Copy- copies the content of the last cell in the selected rangeEdit > Cut- cuts the content of the last cell in the selected range
# Context menu
When the context menu is enabled, it includes default items, including copy & cut options.
- Copy - as a predefined key
copy - Cut - as a predefined key
cut
You can use them in the same way as the rest of the predefined items in the context menu. These operations are executed by document.execCommand().
# Trigger copy & cut programmatically
First, select a cell range to copy or cut.
hot.selectCell(1, 1);
Then use one of the following commands:
document.execCommand('copy')document.execCommand('cut')
The CopyPaste plugin listens to the browser's copy and cut events. If triggered, our implementation will copy or cut the selected data to the system clipboard.
Note: Not all selection-related Handsontable methods result in it gaining focus. Make sure your table instance is focused by calling isListening() before copying or pasting data.
# Hooks
The CopyPaste plugin exposes the following hooks to manipulate data during copy or cut operations:
Examples of how to use them are provided in their descriptions.
# Paste
The Paste action allows the importing of data from external sources using the user's system clipboard. The CopyPaste firstly looks for text/html in the system clipboard, followed by text/plain.
# End-user usage
Available keyboard shortcuts:
- Ctrl/Cmd + V - paste the content into the last cell in the selected range
Available options in the browser's toolbar:
Edit > Paste- paste the content into the last cell in the selected range
# Context menu
Due to security reason, modern browsers disallow to read from the system clipboard. Learn more (opens new window)
# Trigger paste programmatically
Due to security reason, modern browsers disallow to read from the system clipboard. Learn more (opens new window)
# Hooks
The CopyPaste plugin exposes the following hooks to manipulate data during the pasting operation:
Examples of how to use them are provided in their descriptions.
# Limitations
- The
CopyPasteplugin doesn't copy, cut or paste cells' appearance. - The data copied from Handsontable will always remain as plain text. For example, if you copy a checked checkbox, the input will be kept as a value of
'true'. document.execCommandcan be called only during an immediate-execute event, such as aMouseEventor aKeyboardEvent.
# Related keyboard shortcuts
| Windows | macOS | Action | Excel | Sheets |
|---|---|---|---|---|
| Ctrl + X | Cmd + X | Cut the contents of the selected cells to the system clipboard | ✓ | ✓ |
| Ctrl + C | Cmd + C | Copy the contents of the selected cells to the system clipboard | ✓ | ✓ |
| Ctrl + V | Cmd + V | Paste from the system clipboard | ✓ | ✓ |
# Related API reference
- Configuration options:
- Core methods:
- Hooks:
- Plugins: